Nodemon

3.1.14 · active · verified Sat Apr 18

Nodemon is a development utility that automatically restarts Node.js applications when file changes are detected in the directory. It serves as a replacement wrapper for the `node` command, requiring no code modifications to integrate. The current stable version is 3.1.14, and the project maintains an active release cadence, frequently publishing minor updates and bug fixes.

Common errors

Warnings

Install

Quickstart

Starts your TypeScript application using Nodemon, which will automatically restart the process whenever changes are detected in your project files, typically within the `src` directory.

npx nodemon ./src/index.ts

view raw JSON →