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();
В стремлении сделать серверный JavaScript похожим на Rails или Sinatra мы получили Express. Чистый и простой. Простой и чистый.