egoist / Nswatch
Licence: mit
Like gulp.watch but for npm scripts.
Stars: ✭ 103
Programming Languages
javascript
184084 projects - #8 most used programming language
nswatch
Like gulp.watch but for npm scripts.
Install
$ npm install -D nswatch
Usage
Assuming you have an npm script build
to compile something, then drop a watch.js
in your project:
const watch = require('nswatch')
watch('src/*.js', ['build'])
When you run node watch
, the npm run build
will be invoked right away, and will also be invoked when file changes are detected.

Parallel and Sequence
Array
will be treated as parallel, String
will be treated as sequence:
// run in parallel
watch('src/a.js', ['task-a', 'task-b'])
// run in sequence
// use ! as seperator
watch('src/b.js', 'task-a!task-b')
CLI
$ npm install -g nswatch
You can also use nswatch
as a command-line program:
watch
in package.json
Configure {
"watch": {
"./src/*.js": ["build"],
"./src/*.css": "compile!minify"
}
}
Then run:
$ nswatch
Or you can pass the config via CLI arguments, this way configurations in package.json
will be ignored.
# in parallel
$ nswatch "src/*.js" --script foo --script bar
# in sequence
$ nswatch "src/*.js" --script "foo!bar"
Author
nswatch © EGOIST, Released under the MIT License.
Authored and maintained by EGOIST with help from contributors (list).
egoistian.com · GitHub @egoist · Twitter @rem_rin_rin
Note that the project description data, including the texts, logos, images, and/or trademarks,
for each open source project belongs to its rightful owner.
If you wish to add or remove any projects, please contact us at [email protected].