node-threads-a-gogo
node-threads-a-gogo copied to clipboard
TAGG :: threads_a_gogo :: Simple and fast JavaScript threads for Node.js
threads_a_gogo.target.mk:108: recipe for target 'Release/obj.target/threads_a_gogo/src/threads_a_gogo.o' failed make: *** [Release/obj.target/threads_a_gogo/src/threads_a_gogo.o] Error 1 make: Leaving directory '/home/ls/blockchain-explorer/node_modules/threads_a_gogo/build' gyp ERR! build error gyp ERR! stack Error: `make` failed with exit code: 2 gyp...
Fixes #47 #43 and #25
Windows support would be great. I think #24 would help, along with a switch from waf to gyp.
It is not possible at the moment to require external modules or files from within a thread. I know this is not a bug it is a feature. But it...
example: class Test { constructor() { } aaa() { return 11111 } } const test = new Test() var numThreads= 10; var threadPool= require('threads_a_gogo').createPool(numThreads).all.eval(test.aa); threadPool.all.eval('test.aa()', function cb (err, data) {...
TAGG: 0.1.13 Node.js: v6.9.5 Check out this strange code: ```JavaScript 'use strict' const tagg = require('threads_a_gogo') const thread = tagg.create() const promise = new Promise((resolve) => { thread.on('event', resolve) thread.eval(`thread.emit('event',...
I'm trying to figure out a way how a piece of Javascript code can be forced to terminate its execution. I've tried to use your library like this: ``` javascript...