require.paths.unshift('path/to/express/lib'); require('express'); get('/', function(){ this.redirect('/hello/world') }); get('/hello/world', function(){ return 'Hello World' }); get('/bye/world', function(){ this.render('title.html.haml', { layout: false, locals: { title: 'Bye World' } }); }); run();
Source: https://habr.com/ru/post/93359/
All Articles