json-pointer-server

1.0.4 • Public • Published

json-pointer-server

Server on top of [RFC6901]

or simpler..

Server on top of JSON documents

Use

Consider the following JSON:

var data = {
  people: [{
    name: 'Nicola',
    surname: 'Greco'
  }, ..]
}

Using this module, you can navigate the JSON like it was a path. For example:

GET http://example.com/people/1
{
  name: 'Nicola',
  surname: 'Greco'
}
GET http://example.com/people/1/name
'Nicola'

and also PUT

$ curl -X PUT -d 'Virginia' http://example.com/people/1/name
// will set the name to be Virginia
$ curl -H 'Accept: application/json' -X PUT -d '{"name": "Virginia"}' http://example.com/people/1
// will set the name to be Virginia

Install

$ npm install --save json-pointer-server

Use it

var router = require('json-pointer-server')
var http = require('http')
var server = http.createServer(router({your: json: {'here'}}))
server.listen(8080)

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i json-pointer-server

Weekly Downloads

1

Version

1.0.4

License

MIT

Last publish

Collaborators

  • nicola