nrtv-server
v0.26.0
Published
Send stuff over HTTP
Downloads
12
Readme
A wrapper for Express that adds the things it boneheadedly leaves out by default:
var Server = require("nrtv-server")
var instance = new Server()
instance.get("/", function(x,response) {
response.send("okay")
})
instance.start(4100)
instance.stop()
Features
- Adds bodyParser
- Has a stop method. Yeah.