Skip to content

Commit 14e5d47

Browse files
Merge pull request #2222 from Lalit3716/patch-1
Docs: Mentioning npm run start:dev command in first steps guide
2 parents 714cdd3 + 02420eb commit 14e5d47

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

content/first-steps.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,3 +100,10 @@ $ npm run start
100100
```
101101

102102
This command starts the app with the HTTP server listening on the port defined in the `src/main.ts` file. Once the application is running, open your browser and navigate to `http://localhost:3000/`. You should see the `Hello World!` message.
103+
104+
To watch for changes in your files, you can run the following command to start the application:
105+
```bash
106+
$ npm run start:dev
107+
```
108+
109+
This command will watch your files, automatically recompiling and reloading the server.

0 commit comments

Comments
 (0)