peach a19a732be8 commit message | пре 2 година | |
---|---|---|
.. | ||
LICENSE | пре 2 година | |
README.md | пре 2 година | |
index.js | пре 2 година | |
package.json | пре 2 година | |
test.js | пре 2 година |
Enable destroying a server, and all currently open connections.
var enableDestroy = require('server-destroy');
var server = http.createServer(function(req, res) {
// do stuff, blah blah blah
});
server.listen(PORT);
// enhance with a 'destroy' function
enableDestroy(server);
// some time later...
server.destroy();