0.0.2 • Published 10 years ago

simple-serve v0.0.2

Weekly downloads
5
License
MIT
Repository
github
Last release
10 years ago

Simple-Serve

Build Status

Sample Usage:

var simpleServe = require('simple-serve');
simpleServe({
  'GET /': '<html><body><h1>Working</h1></body></html>',
  'GET /page2.html': '<html><body><h1>Went to Page 2</h1></body></html>',
  'POST /users': 'You posted name: {name}'
})(function(err, server) {
  console.log('http://localhost:' + server.address().port;)
});

Note that it returns a thunk, because I mainly wrote this to test co related things

See test for more usage examples