UNPKG

@dwatcher/core

Version:

Lightweight, performant Node.js file watcher with intelligent debouncing - zero dependencies alternative to nodemon

10 lines (7 loc) 208 B
#!/usr/bin/env node import { createCLI } from "../src"; const cli = createCLI(); cli.run(process.argv).catch(err => { console.error(`\x1b[31m[dwatcher]\x1b[0m ${err.message}`); process.exit(1); });