1.1.0 • Published 7 years ago

http-methods v1.1.0

Weekly downloads
2,187
License
-
Repository
github
Last release
7 years ago

http-methods build status

Handle multiple methods elegantly

Example

var methods = require("http-methods")
    , http = require("http")

http.createServer(methods({
    GET: function (req, res)  { res.end("get") }
    , POST: function (req, res) { res.end("post") }
})).listen(8080)

Installation

npm install http-methods

Tests

npm test

Contributors

  • Raynos

MIT Licenced