Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/felixge/node-race
- Owner: felixge
- Created: 2011-12-27T21:24:39.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2011-12-27T21:48:55.000Z (almost 13 years ago)
- Last Synced: 2024-12-18T05:44:11.181Z (7 days ago)
- Language: JavaScript
- Homepage:
- Size: 89.8 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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
```