0.0.19 • Published 8 years ago

expressive-route v0.0.19

Weekly downloads
5
License
MIT
Repository
github
Last release
8 years ago

Expressive Route

express configurable route manager with extendable plugin systems

Installation

$ npm install expressive-route

Usage

var express = require('express');
var ExpressiveRoute = require('expressive-route');

var app = express();
var expressiveRoute = new ExpressiveRoute(express);

expressiveRoute.route(function(router) {
	router.get('/users', {
		handler: function(req, res, next) {}
	});
});

app.use(expressiveRoute.router);

Principle

This module is made for configurable router system. by calling router.METHOD function with url and route configuration object, It tells that router will use plugin middlewares with given configuration and handler.

0.0.19

8 years ago

0.0.16

8 years ago

0.0.15

8 years ago

0.0.14

8 years ago

0.0.13

8 years ago

0.0.12

8 years ago

0.0.11

8 years ago

0.0.10

8 years ago

0.0.9

8 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago