Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/felixge/node-race

Restarts a given node script until it fails.
https://github.com/felixge/node-race

Last synced: 3 days ago
JSON representation

Restarts a given node script until it fails.

Awesome Lists containing this project

README

        

# race

Restarts a given node script until it fails.

## Install

```
npm install race
```

## Usage

Considering you have a script called `script.js` which throws an Error in 10%
of all cases, this is how you can execute it over and over until it fails and
then print the corresponding output:

```
race script.js
```