You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
266 B

9 years ago
9 years ago
  1. var express = require('express'),
  2. http = require('http');
  3. var app = express();
  4. app.use(express.static('./public'));
  5. var server = http.createServer(app).listen(8080);
  6. console.log("Listening on port 8080");
  7. console.log("Visit http://localhost:8080 please.");