0.0.2 • Published 4 years ago

rapicio v0.0.2

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

rapicio

This is the javascript library for rapic.io operations

install

npm run install

supported operations

1) login() 2) getData("ProjectName", "ObjectName") 3) postData("ProjectName", "ObjectName", {"yourData": "here", "someOtherField": "another"}) 4) updateData("ProjectName", "ObjectName", dataID, {"yourData": "newValue"}) 5) deleteData("ProjectName", "ObjectName", dataID)

example usage

var rapic = require('rapicio');

let rapicClient = rapic("username", "password");
await rapicClient.login() // login returns a promise, either use it in a async func or use .then()
let myData = await rapicClient.getData("ProjectName", "ObjectName") // getData returns a promise, either use it in a async func or use .then()
0.0.2

4 years ago

0.0.1

4 years ago