Files
node-tutorial/bin/www
T
Jackk Goh c1f1ada934 init
2018-03-15 16:11:38 +08:00

9 lines
301 B
Plaintext

// This will be our application entry. We'll setup our server here.
const http = require('http');
const app = require('../app'); // The express app we just created
const port = parseInt(process.env.PORT, 10) || 8000;
app.set('port', port);
const server = http.createServer(app);
server.listen(port);