I think the problem is in assigning routes, which I tried to do but with no success.
Good Alexandre,
I think the problem is that the "index.html" file is not being sent to the GET request.
var path = require('path');
app.get('/', function(req, res) {
res.sendFile(path.join(__dirname + '/index.html'));
});
I hope I have helped:)