# fly-nodemon

> nodemon plugin for Fly.

Latest version **0.1.3** (published 2015-08-31) · MIT license · 0 weekly downloads

## Install

```sh
npm install fly-nodemon
pnpm add fly-nodemon
yarn add fly-nodemon
bun add fly-nodemon
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.3 |
| Published | 2015-08-31 |
| First published | 2015-07-26 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 0.11.0 |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Jake Russo |
| Maintainers | madcapjake |
| Keywords | fly, fly-plugin, nodemon |

## Links

- npm: https://www.npmjs.com/package/fly-nodemon
- Repository: https://github.com/MadcapJake/fly-nodemon
- Homepage: https://github.com/MadcapJake/fly-nodemon#readme
- Issues: https://github.com/MadcapJake/fly-nodemon/issues
- npm.io page: https://npm.io/package/fly-nodemon

## Dependencies (1)

- [nodemon](https://npm.io/package/nodemon.md) ^1.3.8

## Recent versions

- 0.1.3 (latest) — 2015-08-31
- 0.1.2 — 2015-08-17
- 0.1.1 — 2015-07-26
- 0.1.0 — 2015-07-26

## README

<div align="center">
  <a href="http://github.com/flyjs/fly">
    <img width=200px  src="https://cloud.githubusercontent.com/assets/8317250/8733685/0be81080-2c40-11e5-98d2-c634f076ccd7.png">
  </a>
</div>

> [Nodemon](http://nodemon.io/) plugin for _[Fly][fly]_.

[![][fly-badge]][fly]
[![npm package][npm-ver-link]][releases]
[![][dl-badge]][npm-pkg-link]
[![][travis-badge]][travis-link]
[![][mit-badge]][mit]

## Usage
> Check out the [documentation][nodemon-docs] to see the available options.

### Install

```a
npm install -D fly-nodemon
```

### Example

#### JavaScript
```js
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
```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][mit] © [Jake Russo][author] et [al][contributors]


[mit]:          http://opensource.org/licenses/MIT
[author]:       http://github.com/MadcapJake
[contributors]: https://github.com/MadcapJake/fly-nodemon/graphs/contributors
[releases]:     https://github.com/MadcapJake/fly-nodemon/releases
[fly]:          https://www.github.com/flyjs/fly
[fly-badge]:    https://img.shields.io/badge/fly-JS-05B3E1.svg?style=flat-square
[mit-badge]:    https://img.shields.io/badge/license-MIT-444444.svg?style=flat-square
[npm-pkg-link]: https://www.npmjs.org/package/fly-nodemon
[npm-ver-link]: https://img.shields.io/npm/v/fly-nodemon.svg?style=flat-square
[dl-badge]:     http://img.shields.io/npm/dm/fly-nodemon.svg?style=flat-square
[travis-link]:  https://travis-ci.org/MadcapJake/fly-nodemon
[travis-badge]: http://img.shields.io/travis/MadcapJake/fly-nodemon.svg?style=flat-square
[nodemon-docs]: https://github.com/remy/nodemon/blob/master/doc/requireable.md

---
_Source: https://npm.io/package/fly-nodemon · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
