Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions en/starter/generator.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,20 @@ Then install dependencies:
```bash
$ cd myapp
$ npm install

## Using Nodemon for Live Server Restarting
Nodemon automatically restarts your Node.js server whenever you make changes to your files — perfect for development.
Installation
npm install --save-dev nodemon
Add to Scripts
In your package.json:
"scripts": {
"start": "nodemon server.js"
}
Run the Server
npm start
or
npx nodemon server.js
```

On MacOS or Linux, run the app with this command:
Expand Down