tiny-worker icon indicating copy to clipboard operation
tiny-worker copied to clipboard

Tiny WebWorker for the Server

Results 11 tiny-worker issues
Sort by recently updated
recently updated
newest added

Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.7. Commits c74c8af 1.3.7 024b8b5 update deps, add linting 032fbaf Use Object.create(null) to avoid default object property hazards 2da9039 1.3.6 cfea636 better git push script,...

dependencies

Bumps [yargs-parser](https://github.com/yargs/yargs-parser) from 13.1.1 to 13.1.2. Changelog Sourced from yargs-parser's changelog. 15.0.0 (2019-10-07) Features rework collect-unknown-options into unknown-options-as-args, providing more comprehensive functionality (ef771ca) BREAKING CHANGES rework collect-unknown-options into unknown-options-as-args, providing...

dependencies

Right now TS projects can't use tiny-worker well without these type definition files.

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. Release notes Sourced from lodash's releases. 4.17.16 Commits d7fbc52 Bump to v4.17.19 2e1c0f2 Add npm-package 1b6c282 Bump to v4.17.18 a370ac8 Bump to v4.17.17 1144918...

dependencies

Bumps [websocket-extensions](https://github.com/faye/websocket-extensions-node) from 0.1.3 to 0.1.4. Changelog Sourced from websocket-extensions's changelog. 0.1.4 / 2020-06-02 Remove a ReDoS vulnerability in the header parser (CVE-2020-7662, reported by Robert McLaughlin) Change license from...

dependencies

Files that run inside of the tiny-worker forked process have the wrong __dirname. It appears to evaluate to the working directory for the parent process.

Bumps [acorn](https://github.com/acornjs/acorn) from 7.0.0 to 7.1.1. Commits 6d19489 Mark release 7.1.1 793c0e5 More rigorously check surrogate pairs in regexp validator b5c1787 Fix incorrect comment in regexp parser 12ae8fe Parameterize dummy...

dependencies

I'm trying to load emscripten (WebAssembly) modules in node.js with this library but I conclude is not possible without hacking (hard and ugly). The idea is to use native [Node.js...

My use case requires sourcing workers from remote HTTP, like the browser `Worker`. Seems doable to make that work on either the master or child side, though `postMessage` might need...

Broken example in node: ````js var Worker = require("tiny-worker"); var worker = new Worker(function () { self.onmessage = function (ev) { postMessage(ev.data instanceof ArrayBuffer); }; }); worker.onmessage = function (ev)...

enhancement
question