This repository aims to help developers to learn about NEM Library concepts with working use cases.
$> git clone git@github.com:aleixmorgadas/nem-library-examples.git$> npm install
$> tscThe examples are placed inside the concepts folder and they end with the .ts extension.
To run an example, you need to compile first the TypeScript files running tsc (TypeScript Compiler).
Then, you are able to run the samples with node. Example:
$> tsc
$> node concepts/account/AccountHttpExample.jsWhere AcountHttpExample.js is the specific example that you want to run.