mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-03 14:01:27 -05:00
fix(curriculum): add information about server restart (#54035)
This commit is contained in:
@@ -20,6 +20,14 @@ Node is just a JavaScript environment. Like client side JavaScript, you can use
|
||||
|
||||
We recommend to keep the terminal open while working at these challenges. By reading the output in the terminal, you can see any errors that may occur.
|
||||
|
||||
The server must be restarted after making changes to its files.
|
||||
|
||||
You can stop the server from the terminal using `Ctrl + C` and start it using Node directly (`node mainEntryFile.js`) or using a run script in the `package.json` file with `npm run`.
|
||||
|
||||
For example, the `"start": "node server.js"` script would be run from the terminal using `npm run start`.
|
||||
|
||||
To implement server auto restarting on file save Node provides the `--watch` flag you can add to your start script `"start": "node --watch server.js"` or you can install an npm package like `nodemon`. We will leave this to you as an exercise.
|
||||
|
||||
# --instructions--
|
||||
|
||||
Modify the `myApp.js` file to log "Hello World" to the console.
|
||||
|
||||
Reference in New Issue
Block a user