tnightingale / dump

A RESTful dump

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dump

The best project ever.

Getting Started

Install the module with: npm install

Requires redis to be running:

# * The path to redis.conf is the default when redis is installed with homebrew.
redis-server /usr/local/etc/redis.conf
var dump = require('dump').createServer().start();
# Add documents to storage:
curl -is -d '{"foo": "bar", "baz": ["hello", "tom"]}' localhost:8080/storage

# Get documents from storage:
curl -is localhost:8080/storage/17

Documentation

(Coming soon)

Examples

(Coming soon)

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

(Nothing yet)

License

Copyright (c) 2013 tnightingale
Licensed under the MIT license.

About

A RESTful dump

License:MIT License


Languages

Language:JavaScript 100.0%