April 2020
Intermediate to advanced
716 pages
18h 55m
English
In order to run the application, we will update the package.json file to add the following run scripts for development and production:
mern-simplesetup/package.json:
"scripts": { "development": "nodemon", "build": "webpack --config webpack.config.client.production.js && webpack --mode=production --config webpack.config.server.js", "start": "NODE_ENV=production node ./dist/server.generated.js"}
Let's look at the code:
Read now
Unlock full access