0.1.3 • Published 9 years ago

fly-nodemon v0.1.3

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

Nodemon plugin for Fly.

npm package

Usage

Check out the documentation to see the available options.

Install

npm install -D fly-nodemon

Example

JavaScript

const paths = {
  scripts: ["src/**/*.js", "!src/ignore/**/*.js"]
}

export default function* () {
  yield this.watch(paths.scripts, ["restart"])
}

export function* restart () {
  yield this.nodemon({
    script: "src/app.js",
    events: {
      restart: "google-chrome http://localhost:3000/"
    }
  })
}

Earl-Grey

paths = {
  scripts = {"src/**/*.eg", "!src/ignore/**/*.eg"}
}

provide: default, restart

default = *-> yield this.watch(paths.scripts, {"restart"})

restart = *-> yield this.nodemon with {
  script = "src/app.eg"
  events = {
    restart = "google-chrome http://localhost:3000/"
  }
}

License

MIT © Jake Russo et al

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago