rerun-watcher
TypeScript icon, indicating that this package has built-in type declarations

0.3.0 • Public • Published

rerun-watcher

npm version npm downloads bundle JSDocs License

Create a rerun watcher using chokidar

Install

npm i rerun-watcher

Usage

import spawn from 'cross-spawn'
import { createRerunWatcher } from 'rerun-watcher'

const watcher = await createRerunWatcher(
  ['src/**/*.js', 'src/**/*.jsx'],
  () => {
    return spawn('node', ['src/main.js'], {
      stdio: [
        'inherit', // stdin
        'inherit', // stdout
        'inherit', // stderr
      ]
    })
  }
)

Change any file in src directory, the src/main.js will be rerun.

13:40:01 change in ./src/config.js Rerunning...

You can configure your application name and ignore files:

const watcher = await createRerunWatcher(
  ['src/**/*.js', 'src/**/*.jsx'],
  () => {
    // ...
  },
  {
    name: 'MyApp',
    ignored: [
      'src/**/*.test.js'
    ],
    // ...any other chokidar options
  }
)
13:40:01 [MyApp] change in ./src/config.js Rerunning...

License

MIT License © Hairyf

/rerun-watcher/

    Package Sidebar

    Install

    npm i rerun-watcher

    Weekly Downloads

    105

    Version

    0.3.0

    License

    MIT

    Unpacked Size

    18 kB

    Total Files

    7

    Last publish

    Collaborators

    • tuimao