tripwire icon indicating copy to clipboard operation
tripwire copied to clipboard

Break out from scripts blocking the node.js event loop

Results 9 tripwire issues
Sort by recently updated
recently updated
newest added

I get the same stack trace with both versions: the culprit seems to be: "../src/tripwire_linux.cc:100:21: error: ‘TerminateExecution’ is not a member of ‘v8::V8’" ``` > [email protected] install /opt/app/backend/node_modules/tripwire > node...

I'm getting the following error when trying to use this with iisnode to guard against processes hanging up: Application has thrown an uncaught exception and is terminated: Error: The specified...

After the tripwire fires, my script exits, whether I call `process.exit(1)` or not. For example, this code... ``` var tripwire = require("tripwire"); process.on('uncaughtException', function (e) { console.log('Doom'); }); tripwire.resetTripwire(2000); console.log("Hello")...

I'm not sure whether that is possible, but it would be great to know, where application got blocked. Currently we just know that process has blocked and tripwire aborts it,...

Tripwire doesn't seem to work properly with the latest Node 4 LTS (v4.2.4). The example in the README: ``` Javascript process.on('uncaughtException', function (e) { console.log('The event loop was blocked for...

Error when building on Travis CI. Wasn't happening before. ``` npm ERR! [email protected] install: `node install.js` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the [email protected] install...

Though it didn't exist when this module was created, libuv currently has support for condition variables. See: https://github.com/joyent/libuv/blob/master/test/test-condvar.c I think this would reduce the codebase significantly.