myjson-api
Advanced tools
An SDK for working with myjson.com simple JSON storage service
Weekly downloads
Readme
This is a simple wrapper for MyJSON.com the simple JSON store for your web or mobile app: http://myjson.com/
It has a Promise based syntax
npm install myjson
Then use it like this:
const myJsonAPI = require('myjson-api');
// Create a JSON object:
myJsonAPI.create({newBucketName:"New Bucket", counter: 0})
.then((response) => console.log({id:response.id, uri:response.uri}))
.error(() => )
// Get a JSON object:
myJsonAPI.get({binId})
.then((json) => console.log(json))
.error(() => )
// Get a JSON object:
myJsonAPI.update({binId, JSON})
.then((updatedJSON) => console.log(updatedJSON)
.error(() => )
The get function returns the JSON object associated with the bin id.
The create function creates a new myJSON bin(object). Returns to you the ID of the bin that was
The update function allows you to update the JSON object associated with the bin id.
The get function returns the JSON object associated with the bin id.
Kind: global function
Param | Type | Description |
---|---|---|
binId | string | the id of the bin you want to get the JSON for. |
The create function creates a new myJSON bin(object). Returns to you the ID of the bin that was
Kind: global function
Returns: string
- binId - the id of the MyJSON bin(object) that was created
The update function allows you to update the JSON object associated with the bin id.
Kind: global function
Param | Type | Description |
---|---|---|
binId | string | the id of the bin you want to get the JSON for. |
jsonObject | string | the updated JSON object |