Seliniux777
Results
1
comments of
Seliniux777
var app = require('express')(); var http = require('http').Server(app); app.get('/', function(req, res){ res.sendfile('index.html'); }); http.listen(3000, function(){ console.log('listening on *:3000'); }); We'll need an index.html file to serve, create a new file...