1.0.1 • Published 8 years ago

@denysfontenele/restparse v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

RestParse

Parse REST API Client for Node.js

install

npm install @denysfontenele/restparse
var restparse = require('restparse');

// instantiate
var config = {
  serverUrl: 'http://localhost:1337',
  applicationId: 'myAppId',
  masterKey: 'myMasterKey', // optional
  mountPath: '/parse' // optional ("/parse" by default)
};

var restparse = new restparse(config);