fix(curriculum): add information about server restart (#54035)

This commit is contained in:
Lasse Jørgensen
2024-03-11 08:17:14 +01:00
committed by GitHub
parent fcf6bfae6a
commit 0daa2e193f

View File

@@ -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.