| title | Getting Started |
|---|---|
| icon | home |
| ordinal | 0 |
NodeJS is a javascript runtime build on Chrome’s V8 engine. npm is the package manager for NodeJS.
Use the official installer from nodejs.org. Install the one which says “Recommended for Most Users”
To use commands like new and console:
npm install slp-sdk --global
To use inside a command line script or client/server app:
npm install slp-sdk --save
Use the scaffold generator, or manually import SLP SDK into your code:
const SLPSDK = require('slp-sdk');
const SLP = new SLPSDK();