An npm package to install a watchexec prebuilt binary
npm install watchexec-bin
As this package makes use of install
npm script in order to download a binary for the current platform, ignore-scripts
npm-config cannot be enabled while executing the command above.
Type: string
An absolute path to the installed watchexec binary, which can be used with child_process
functions.
const {spawn} = require('child_process');
const watchexec = require('watchexec');
spawn(watchexec, ['--', 'ls', '-la']);
Once this package is installed to the project directory, users can execute watchexec
command inside npm scripts of the project.
"watch-js": "watchexec --ext js eslint ."
$ npm run-script watch-js
ISC License © 2018 Shinnosuke Watanabe
Apache License 2.0 © 2016 Matt Green