Restart the application when some file changes

5.9k Views Asked by At

In Nest.js application I would like to create some kind of watch which will restart the whole application when some external file changes. Naturally observing a file for changes is an easy part, but I don't have an idea how to trigger restart in Nest.js within the application.

2

There are 2 best solutions below

1
On

According to the official documentation, the command npm run start:dev will launch your application and it will be recompiled when changes are detected.

The details are here: https://docs.nestjs.com/cli/overview#basic-workflow

0
On

To achieve the expected result, run the application in debug mode using the debug prefix for example npm run start:debug. To do this, you must have a script in your package.json: "start:debug": "nest start --debug --watch".