evr-sdk
v1.0.1
Published
Envelop® for Windows® JavaScript SDK
Downloads
2
Readme
Envelop® for Windows® JavaScript SDK
Check out our API reference and live JavaScript samples at https://envelopvr.com/sdk-docs
Installing from package managers
- For Node:
npm install evr-sdk --save
- From Bower:
bower install evr-sdk --save
Manual installation
- Download and unzip the latest build from releases.
Building from source
- Run
git clone https://github.com/envelopvr/evr-sdk
- Run
cd evr-sdk
- If Gulp is not already installed globally, run
npm install gulp -g
- If Typings is not already installed globally, run
npm install typings -g
- Install the package dependencies:
npm install
- Install the TypeScript declarations:
typings install
- Build the library:
gulp
Additional Gulp tasks
- Use
gulp build:node
to build the library for NodeJS only. - Use
gulp build:browserify
to build the library for web browser clients only. - Use
gulp watch
,gulp watch:node
orgulp watch:browserify
for live recompilation.