simple-serve
v0.0.2
Published
Simple Rest Server
Downloads
5
Readme
Simple-Serve
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