> For the complete documentation index, see [llms.txt](https://mhy.js.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mhy.js.org/tools/processes/nodemon.md).

# nodemon

Run scripts in Node.JS using `nodemon`. Almost the same as `node` process with watcher.

* Same support as with the `node process`.
* Default: `./src`

## Default command

```bash
nodemon ./src
```

## CLI Options

<https://github.com/remy/nodemon#nodemon>

## Examples

### Default CLI

```bash
mhy nodemon
```

### Run a specific file

```bash
mhy nodemon file
```
