August 2017
Beginner
374 pages
10h 41m
English
The last step is adding scripts to our package.json file so that we can actually run our application via npm start.
Open package.json and find the scripts section, and replace it with the following:
"scripts": { "start": "webpack-dev-server", "build": "webpack"},
Finally, we can run our project by executing the following command:
npm start
Then open http://localhost:8080/ in your browser. Open the Console to see the following hello world! message:

Read now
Unlock full access