Created
November 5, 2016 21:35
-
-
Save elhachimi/cb203c15cafca11c35d3eb9157686c98 to your computer and use it in GitHub Desktop.
Watches the current folder and runs "node file" if changed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs'); | |
const exec = require('child_process').exec; | |
fs.watch('./', {encoding: 'buffer'}, (eventType, filename) => { | |
if (filename) | |
exec(`node ${filename}`, (err, stdout, stderr) => { | |
if (err) { | |
console.log(err); | |
return; | |
} | |
console.log(`file ${filename} has changed`); | |
console.log(stdout); | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment