Skip to content

Instantly share code, notes, and snippets.

@elhachimi
Created November 5, 2016 21:35
Show Gist options
  • Save elhachimi/cb203c15cafca11c35d3eb9157686c98 to your computer and use it in GitHub Desktop.
Save elhachimi/cb203c15cafca11c35d3eb9157686c98 to your computer and use it in GitHub Desktop.
Watches the current folder and runs "node file" if changed
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