# nibbler-upstart

> upstart integration for nibbler

Latest version **0.1.0** (published 2015-04-21) · MIT license · 0 weekly downloads

## Install

```sh
npm install nibbler-upstart
pnpm add nibbler-upstart
yarn add nibbler-upstart
bun add nibbler-upstart
```

## 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.0 |
| Published | 2015-04-21 |
| First published | 2015-04-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Maciej Małecki |
| Maintainers | mmalecki |
| Keywords | nibbler |

## Links

- npm: https://www.npmjs.com/package/nibbler-upstart
- Repository: https://github.com/mmalecki/nibbler-upstart
- Issues: https://github.com/mmalecki/nibbler-upstart/issues
- npm.io page: https://npm.io/package/nibbler-upstart

## Dependencies (2)

- [nibbler-exec](https://npm.io/package/nibbler-exec.md) ~0.1.0
- [strong-service-upstart](https://npm.io/package/strong-service-upstart.md) ~1.0.2

## Recent versions

- 0.1.0 (latest) — 2015-04-21

## README

# nibbler-upstart
Upstart module for [Nibbler](https://github.com/mmalecki/nibbler).

## Installation
```sh
npm install nibbler-upstart
```

## Usage
This sets up and starts a service that runs `/opt/app/server.js` using `iojs`
binary on your local host:

```js
var upstart = require('nibbler-upstart')

var service = {
  name: 'app',
  execpath: 'iojs',
  script: '/opt/app/server.js'
}

upstart.install(service, function(err) {
  if (err) throw err
  upstart.start(service, function(err) {
    if (err) throw err
  })
})
```

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