Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
var express = required('express');
var app = express ();
app.get ('/', function (req, res) {
res.send ('Hello World!');
});
app.listen (3000, function () {
});