0.1.1 • Published 8 years ago

fastboot-fs-notifier v0.1.1

Weekly downloads
25
License
MIT
Repository
github
Last release
8 years ago

Fastboot FS Notifier

A Fastboot App Server Notifier for watching files on the local disk.

const FSNotifier = require('fastboot-fs-notifier');

let notifier = new FSNotifier({
  targetDir: TARGET_PATH
});

let server = new FastBootAppServer({
  notifier: notifier
});

When the notifier is started, it will use the Node Filesystem's watch function to watch the target directory, which should be your directory for your Ember app. On new releases of the application, it will notify the Fastboot App Server and let it know that files have changed and it should be restarted.