January 2018
Beginner
658 pages
13h 10m
English
To illustrate how this works, I'll fire up my server and by default nodemon; it's not going to watch your handlebars files. So if you make a change, the website's not going to render as you might expect. We can fix this by running nodemon, passing in server.js and providing the -e flag. This lets us specify all of the extensions we want to watch. In our case, we'll watch the JS extension for the server file, and after the comma, the hds extension:

Now our app is up and running, we can refresh things over in the browser, and they should look the same. We have our about page with our footer:
We have our home page with the ...
Read now
Unlock full access