-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb.js
More file actions
9 lines (5 loc) · 1.28 KB
/
web.js
File metadata and controls
9 lines (5 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
var express = require('express');
var app = express();
app.use(express.static(__dirname + '/www'));
app.listen(process.env.PORT || 5000);
console.log("listening");