April 2020
Intermediate to advanced
716 pages
18h 55m
English
Create a nodemon.json file in your project folder and add the following configuration:
mern-simplesetup/nodemon.json:
{ "verbose": false, "watch": [ "./server" ], "exec": "webpack --mode=development --config webpack.config.server.js && node ./dist/server.generated.js"}
This configuration will set up nodemon to watch for changes in the server files during development, then execute compile and build commands as necessary. We can begin writing the code for a simple full-stack web application to see these configurations in action.
Read now
Unlock full access