cervello.js
v0.9.3
Published
JS Module for interacting with Cervello Platform API
Downloads
300
Readme
javascript Cervello SDK
This is a module for interacting with the Cervello Platform APIs. This module is intended to be used within Node.js and from the browser.
Installation
npm install cervello.js --save
yarn add cervello.js
bower install cervello.js --saveUsage
JavaScript
var cervelloJS = require('cervello.js');
TypeScript
import { init } from 'cervello.js';AMD
define(function(require,exports,module){
var cervelloJS = require('cervello.js');
});