I am creating a server with node, which is the following:
var express = require('express');
var app = express();
app.get('/',function(request,res){
res.sendfile('/index.html');
});
app.listen(3000,function(){
console.log('El servidor Esta En llamas!');
});
The file is called server.js and is in the Challenge folder together with the index.html. Inside the same folder I have the folder / css, / js, / img and etc ...
The thing is that I need to import these from your location so you can have everything running ....
As correpsonde routs the folders in node and on express?
regards ...