1.0.0 • Published 6 years ago

jsonbin.org v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

jsonbin.org

NodeJS API for jsonbin.org

Example Usage

let key = "token blablabla"
let bin = require("jsonbin.org")(key)

bin.post("profile", {name: "John", age:21}).then(console.log)
// -> {name: "John", age: 21}
bin.patch("profile", {age: 36}).then(console.log)
// -> {name: "John", age: 36}
bin.get("profile/name").then(console.log)
// -> "John"
bin.delete("profile")
// -> {}