You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fork of unmaintained https://github.com/cowboy/node-exit
2
4
3
5
A replacement for process.exit that ensures stdio are fully drained before exiting.
4
6
@@ -11,10 +13,11 @@ Tested in OS X 10.8, Windows 7 on Node.js 0.8.25 and 0.10.18.
11
13
Based on some code by [@vladikoff](https://github.com/vladikoff).
12
14
13
15
## Getting Started
16
+
14
17
Install the module with: `npm install exit`
15
18
16
19
```javascript
17
-
var exit =require('exit');
20
+
var exit =require("exit");
18
21
19
22
// These lines should appear in the output, EVEN ON WINDOWS.
20
23
console.log("omg");
@@ -63,13 +66,16 @@ C:\node-exit\test\fixtures>
63
66
```
64
67
65
68
## Contributing
69
+
66
70
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [Grunt](http://gruntjs.com/).
67
71
68
72
## Release History
73
+
69
74
2013-11-26 - v0.1.2 - Fixed a bug with hanging processes.
70
75
2013-09-26 - v0.1.1 - Fixed some bugs. It seems to actually work now!
0 commit comments