I created a new project
I edited the views/index.html with my html, javascript of a new library tag cloud I’m testing
I modified server.js to remove all refernce to dreams, it just has the route
// http://expressjs.com/en/starter/basic-routing.html
app.get("/", function (request, response) {
response.sendFile(__dirname + '/views/index.html');
});
I view my project, all I can see is the dreams example app, no matter how I refresh that is all i get. Isther a bug or is it to do with the server having problems.
Am I missing out a really important step?