node-threads-a-gogo icon indicating copy to clipboard operation
node-threads-a-gogo copied to clipboard

TAGG :: threads_a_gogo :: Simple and fast JavaScript threads for Node.js

Results 10 node-threads-a-gogo issues
Sort by recently updated
recently updated
newest added

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...

Windows support would be great. I think #24 would help, along with a switch from waf to gyp.

feature-request

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...

feature-request

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...

feature-request
BUG

Inside a thread there is no possibility to use setTimeout.

feature-request