Create a basic Express app

This commit is contained in:
Aron Carroll 2012-04-17 12:12:04 +01:00
parent a4fe593693
commit 3e8722db3f

7
lib/app.js Normal file
View File

@ -0,0 +1,7 @@
var app = require("express")();
app.get('/', function (req, res) {
res.send('c\'est ne une jsbin');
});
app.listen(3000);