UNPKG

express-easy

Version:

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

7 lines (6 loc) 151 B
module.exports.home = function(req, res, next) { res.send('Hello World'); } module.exports.hello = function(req, res, next) { res.send('World'); }