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