Skip to content

Tag: express

The HTML file dont hit the CSS file

I am beginner in express, js and node.js I have followed lot of tutorials about express, and i dont understand why the index.html file dont call the corresponding CSS file: my server.js file: my index.html file: my CSS file: and the different folders of the project: when i type localhost:8081/0, the result is…

Not Found when serving express static file

I would like to access to a page of my web application. I created the server with expressJs and I serve the route by using app.use(express.static()). Here is my tree : In the app.js file, I have this : The line app.use(‘/MPS’, express.static(__dirname + ‘/client’)); work fine : when I …