Skip to content

Commit 2eba085

Browse files
authored
docs: Mentioning npm run server:dev command
1 parent 3a9315d commit 2eba085

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 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 for changes and will automatically reload the server.

0 commit comments

Comments
 (0)