"scripts": {
"start": "server.js"
},
app.get('/', function (req, res) {
res.render(__dirname + '/client/views/index');
});
http.listen(process.env.PORT || 80);
{
...
"scripts": {
...
"start": "http-server -a localhost -p 8000 -c-1",
...
}
...
}