Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 758 Bytes

README.md

File metadata and controls

39 lines (25 loc) · 758 Bytes

unpm-router

HTTP router for unpm

Build Status

usage

var http = require('http')

var Router = require('unpm-router')
  , router

router = Router('/optional/root/directory')

router.add('method', 'route-to-match', handler_function)

http.createServer(function(req, res) {
  var result = router.match(req)

  if(result) {
    return result.fn(req, res, result)
  }

  res.writeHead(404)
  res.end('not found')
}).listen(4444)

notes

Internally, unpm-router uses routes for route matching, so all of its handy pattern matching functionality is available.

license

MIT