Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 534 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 534 Bytes

minimon

A minimal Node.js restarter based on zx.

A modest nodemon replacement.

Check out the blog post covering how it was written.

Install

npm i minimon -g

Usage

minimon app.js

Configuration

Just create minimon.conf and override the defaults. JSON5 is accepted.

{
  watch: ['**/*.mjs', '**/*.js'],
  ignored: ['**/node_modules/**'],
}