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

https://github.com/isaacs/exit-code

`process.exitCode` behavior back-ported from io.js and Node.js 0.12+
https://github.com/isaacs/exit-code

Last synced: 5 months ago
JSON representation

`process.exitCode` behavior back-ported from io.js and Node.js 0.12+

Awesome Lists containing this project

README

          

# exit-code

`process.exitCode` behavior back-ported from io.js and Node.js 0.12+

## USAGE

```javascript
require('exit-code')

process.exitCode = 2

// do some other stuff
// when the process exits, it'll do it with a code of 2
```