mirror of
https://github.com/jsbin/jsbin.git
synced 2026-01-25 15:38:56 +00:00
Create a basic Express app
This commit is contained in:
parent
a4fe593693
commit
3e8722db3f
7
lib/app.js
Normal file
7
lib/app.js
Normal file
@ -0,0 +1,7 @@
|
||||
var app = require("express")();
|
||||
|
||||
app.get('/', function (req, res) {
|
||||
res.send('c\'est ne une jsbin');
|
||||
});
|
||||
|
||||
app.listen(3000);
|
||||
Loading…
x
Reference in New Issue
Block a user