express-play-routes

0.0.2 • Public • Published

#express-play-routes

Express.js Play like routes.

##Quick Start

Include express-play-routes and use it with your Express.js application:

var app = express(),
    routes = require('express-play-routes');
require("express-play-routes")(app, {
	// NOTE: required options
	routesFilePath: __dirname + "/config/routes",
	controllersDirPath: __dirname + "/controllers"
});

In ./config/routes

# comment
GET   /test Post.method, Post.method2, 
#comment2
PATCH /test2              Post.method3

In ./controllers/post.js

module.exports = {
  method: function(){},
  method2: function(){},
  method3: function(){}
}

##License

MIT License

Copyright (c) 2013 Pimenov Sergey pimenov.sergei@gmail.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i express-play-routes

      Weekly Downloads

      2

      Version

      0.0.2

      License

      none

      Last publish

      Collaborators

      • xquezme