Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 1020 Bytes

File metadata and controls

36 lines (24 loc) · 1020 Bytes

NEM Library code examples

npm version Gitter chat

This repository aims to help developers to learn about NEM Library concepts with working use cases.

Clone this repository

$> git clone git@github.com:aleixmorgadas/nem-library-examples.git

Install packages and compile the source code

$> npm install
$> tsc

How to run an example

The 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.js

Where AcountHttpExample.js is the specific example that you want to run.