Restify NeDB

Express module that adds a REST API for NeDB


Project maintained by dhigginbotham Hosted on GitHub Pages — Theme by mattgraham

restify-nedb (for nedb)

restify-nedb was built to give you restful api resources for client side application frameworks like angular.js, ember.js, backbone.js or knockout.js as well as give you a simple file/memory based cache utilizing nedb. (ps, i love nedb, you should too.) If you haven't already checked it out, maybe you want to use it separate of all of this extra stuff, do it. It's like sqlite, with a subset of mongodb's api. Really neat.

Features


Installation

npm install restify-nedb --save

Example

var express = require('express');
var app = express();
var server = require('http').createServer(app);

app.set('port', 1337);

app.use(express.compress());
app.use(express.methodOverride());
app.use(express.bodyParser());

var restify = require('restify-nedb').mount;
var config = require('restify-nedb').config;

var path = require('path');

// some sample middlware to throw at it
var sampleMiddleware = function (req, res, next) {
  console.log('here\'s a sample middleware...');
  return next();
};

// default config options
var opts = {
  filePath: path.join(__dirname,'db','filestore.db'),
  maxAge: 1000 * 60 * 60,
  prefix: '/session',
  middleware: [sampleMiddleware]
};

// initialize our config object

cfg = new config(opts);

// if you aren't already using an nedb
// instance, then calling this will create
// one for you.

// accepts sync/blocking

// cfg.makeDataStore();

// api = new restify(cfg, app);

// or async <3

cfg.makeDataStore(function(err, ds_cfg) {
  if (!err) {
    api = new restify(ds_cfg, app);
  };
});

server.listen(app.get('port'), function () {
  console.log('restify-nedb example listening on %s', app.get('port'));
});

Configuration Options

Options Defaults Type Infos
ds internal DataStore allow for outside nedb processes to be restified. tip: config.ds() returns a new DataStore with whatever your opts are set to, once it's fired it will internalize and share
prefix /ds String defines the first route path, for instance http://localhost:3000/ds
version /v1 String not preferred, as a rule i feel these aren't the best idea for your api, last thing you want is fragmentation in your api
exclude [] Array excludes keys/values from the api, good for things like password
middleware [] Array middlewares, ie passport authentication, logging, analytics
memoryStore false Boolean whether or not keep an in-memory store or a file based persistant store, defaults to false, we like persistant files.
fileName nedb-filestore.db String file name for your nedb filestore
filePath ../db String bit easier to change the path and view the contents instead of digging through node_modules
maxAge 1000 * 60 * 60 Number if set to null or false automated gc will be disabled
store undefined String not currently working - will allow for multiple nedb collections, still working out the kinks.

Routes

config.makeDataStore(err?, callback?)

Ordering

?limit=20

GET http://localhost:3000/session/v1?limit=20

?skip=10

GET http://localhost:3000/session/v1?skip=10

?sort=val

GET http://localhost:3000/session/v1?sort=val

?sort=-val

GET http://localhost:3000/session/v1?sort=-val

Query / Searching

?key=value

GET http://localhost:3000/session/v1?key=value

Defaults

GET http://localhost:3000/session/v1
POST http://localhost:3000/session/v1

GET http://localhost:3000/session/v1/:id
PUT http://localhost:3000/session/v1/:id
DELETE http://localhost:3000/session/v1/:id

GET http://localhost:3000/session/v1?id=:id
PUT http://localhost:3000/session/v1?id=:id

Additional

?append=true

PUT http://localhost:3000/session/v1/:id?append=true

_stale override

POST / PUT http://localhost:3000/session/v1

Tests

npm test

Cake tools

Pro-tips

License

The MIT License (MIT)

Copyright (c) 2013 David Higginbotham 

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.