0.1.1 • Published 10 years ago

restish v0.1.1

Weekly downloads
7
License
GPL
Repository
github
Last release
10 years ago

Restish

Restish makes a server to send mock JSON objects to requests when building out the front end of your web service.

It's more of a prototyping tool then something to be used in production.

Usage

var restish = require('restish');

options = {
  port : 8000,
  routes: {
    test: { abc: '123'}
  }
}

restish(options);

This will open a server on port 8000, and only respond to a call to /test with the { abc: '123'} object.

0.1.1

10 years ago

0.1.0

11 years ago

0.0.0

11 years ago