remy/nodemon

Monitor for any changes in your node.js application and automatically restart the server - perfect for development

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 2 minutes ago
Added to GitGenius on September 2nd, 2026
Created on October 3rd, 2010
Open Issues & Pull Requests: 12 (+0)
GitHub issues: Enabled
Number of forks: 1,739
Total Stargazers: 26,667 (+0)
Total Subscribers: 255 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 6.9 hours
Mean response time: 28.2 days
90th percentile: 32.7 days
Tracked items: 67

How this project is maintained

Around half of the issues opened in the past year never receive a reply. Only 7% of issues opened in the past year have been closed. Three people close 78% of everything that gets resolved.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 2
New in 7 days: 1
Closed in 7 days: 0
Avg open age: 496 days
Stale 30+ days: 1
Stale 90+ days: 1

Recent activity

Opened in 7 days: 1
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • stale (23)
  • needs more info (5)
  • bug (4)
  • released (4)
  • has PR (3)
  • missing code to replicate (3)
  • not a bug / external to nodemon (3)
  • windows (3)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

nodemon is a development tool that automatically restarts Node.js applications when file changes are detected.

The tool solves the friction of manual server restarts during development. It works by wrapping the standard node command and monitoring the project directory for changes, then automatically restarting the application when modifications are detected. The approach requires no changes to application code or development workflow—developers simply replace `node` with `nodemon` on the command line. nodemon handles both applications that hang indefinitely and those that exit cleanly, continuing to monitor and restart as needed. It also supports manual restarts via the `rs` command without stopping the tool itself.

Developers should adopt nodemon for any Node.js project where rapid iteration matters. It suits local development environments where automatic restarts eliminate context-switching overhead. The tool works as both a global installation and a local development dependency installable through npm. Configuration is optional but supported through `nodemon.json` files in the current directory or home directory, with command-line arguments taking precedence. The tool can read the main entry point from `package.json` automatically, and supports passing through all standard node arguments including the inspect flag for debugging.

Development activity shows consistent maintenance with regular engagement on issues and pull requests. The project maintains comprehensive documentation including a FAQ section and handles feature requests and bug reports actively. Updates are released to address user-reported problems and extend compatibility with different file types and runtime configurations.