Skip to content

editdata/simple-data-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors