0.1.5 • Published 9 years ago

connect-route v0.1.5

Weekly downloads
2,258
License
-
Repository
github
Last release
9 years ago

About

Simple and fast router for Connect

Installation

npm install connect-route

Usage

var
	connectRoute = require('connect-route'),
	connect = require('connect'),
	app = connect();

app.use(connectRoute(function (router) {
	router.get('/', function (req, res, next) {
		res.end('index');
	});

	router.get('/home', function (req, res, next) {
		res.end('home');
	});

	router.get('/home/:id', function (req, res, next) {
		res.end('home ' + req.params.id);
	});

	router.post('/home', function (req, res, next) {
		res.end('POST to home');
	});
}));

app.listen(3000);