When I run the command "npm start", I am not seeing any changes in the console. It seems like the code is not being updated on the fly.
{ "scripts": { "format": "prettier --write app", "start": "http-server" }, "dependencies": { "http-server": "^14.1.0" }, "devDependencies": { "prettier": "^2.0.5" } }
I am using node version 7.11.1 and I have a MacBook.
Any suggestions on what I can do to troubleshoot this issue would be greatly appreciated.
Thank you!