GithubHelp home page GithubHelp logo

express-treerouter's Introduction

express-treeRouter

Easy way for using tree routes in Express.js

Installation

$ npm install express-treerouter

Sample

Create this

var express = require('express'),
	treeRouter = require('express-treerouter')(express),
	app = express();

app.use(treeRouter({
	'' : { get: controller },
	'products': { get: controller, post: controller, content: {
		':product_id': { get: controller, put: controller, del: controller, content: {
			'tags': { get: controller, post: controller, content: { 
				':tag_id': { get: controller, put: controller, del: controller }
			}},
			'comments': { get: controller, post: controller, content: {
				':comment_id': { get: controller, put: controller, del: controller }
			}},
			'owners': { get: controller, post: controller, content: {
				':owner_id': { get: controller, put: controller, del: controller }
			}}
		}}
	}},
	'*' : { all: error404Controller }
}));

From this

var express = require('express'),
	app = express();

app.get('/', controller);

app.get('/products', controller);
app.post('/products', controller);
app.get('/products/:product_id', controller);
app.put('/products/:product_id', controller);
app.del('/products/:product_id', controller);

app.get('/products/:product_id/tags', controller);
app.post('/products/:product_id/tags', controller);
app.get('/products/:product_id/tags/:tag_id', controller);
app.put('/products/:product_id/tags/:tag_id', controller);
app.del('/products/:product_id/tags/:tag_id', controller);

app.get('/products/:product_id/comments', controller);
app.post('/products/:product_id/comments', controller);
app.get('/products/:product_id/comments/:comment_id', controller);
app.put('/products/:product_id/comments/:comment_id', controller);
app.del('/products/:product_id/comments/:comment_id', controller);

app.get('/products/:product_id/owners', controller);
app.post('/products/:product_id/owners', controller);
app.get('/products/:product_id/owners/:owner_id', controller);
app.put('/products/:product_id/owners/:owner_id', controller);
app.del('/products/:product_id/owners/:owner_id', controller);

app.all('*', error404Controller);

express-treerouter's People

Contributors

tomas-bara avatar

Watchers

Navid Nikpour avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.