UNPKG

express-easy

Version:

Simplify the creation of new Express.js projects that adhere to best practices.

9 lines (6 loc) 197 B
var app = require('express-easy')(); var routes = require('./routes'); app.addRoute.get('/', routes.home); app.addRoute.get('/hello', routes.hello); app.enableRouting('/'); module.exports = app;