Skip to content
This repository was archived by the owner on Feb 13, 2024. It is now read-only.

Latest commit

 

History

History
30 lines (18 loc) · 662 Bytes

File metadata and controls

30 lines (18 loc) · 662 Bytes
title Getting Started
icon home
ordinal 0

Dependencies

NodeJS

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”

Command Line

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

Usage

Use the scaffold generator, or manually import SLP SDK into your code:

const SLPSDK = require('slp-sdk');
const SLP = new SLPSDK();