1.0.0 • Published 8 years ago

simple-data-api v1.0.0

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

simple-data-api

For when you work with a bunch of small tabular datasets (<= 100 rows) and need a very simple CRUD API.

Install

npm i --save simple-data-api

Alternately you can clone this repository.

Example

In your index.js file:

var createServer = require('simple-data-api')
var server = createServer()

server.listen(3333, function () {
  console.log('started server at http://127.0.0.1:3333')
})

API client examples

Look at the examples directory.

Start the server

node index.js

License

MIT