├── .gitignore ├── LICENSE.txt ├── changelog.md ├── documentation └── images │ └── demo-screen.png ├── examples ├── arrayHelpers │ ├── mapParallel.html │ └── mapParallel.js ├── basic │ ├── worka.html │ ├── workaRunTimeError.html │ └── workaSyntaxError.html ├── css.css ├── deno │ ├── deno_raw_worker_test.js │ ├── file_usage.js │ ├── readme.md │ └── w.ts ├── estimatePi │ ├── estimatePi.js │ ├── estimatePiPrepared.js │ ├── estimatePiWorker.js │ ├── example.html │ └── example.js ├── index.js ├── node │ ├── file_usage.js │ ├── patchNodeWorker.js │ ├── readme.md │ └── sort.js ├── package-lock.json ├── package.json └── sendFile.js ├── package.json ├── readme.md ├── source ├── arrayParallel.js ├── decorateWorker.js ├── worka.js ├── workerErrorHandler.js ├── workerGlue.js └── workerGlueMulti.js └── tools └── glueAsExportedString.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/changelog.md -------------------------------------------------------------------------------- /documentation/images/demo-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/documentation/images/demo-screen.png -------------------------------------------------------------------------------- /examples/arrayHelpers/mapParallel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/arrayHelpers/mapParallel.html -------------------------------------------------------------------------------- /examples/arrayHelpers/mapParallel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/arrayHelpers/mapParallel.js -------------------------------------------------------------------------------- /examples/basic/worka.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/basic/worka.html -------------------------------------------------------------------------------- /examples/basic/workaRunTimeError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/basic/workaRunTimeError.html -------------------------------------------------------------------------------- /examples/basic/workaSyntaxError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/basic/workaSyntaxError.html -------------------------------------------------------------------------------- /examples/css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/css.css -------------------------------------------------------------------------------- /examples/deno/deno_raw_worker_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/deno/deno_raw_worker_test.js -------------------------------------------------------------------------------- /examples/deno/file_usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/deno/file_usage.js -------------------------------------------------------------------------------- /examples/deno/readme.md: -------------------------------------------------------------------------------- 1 | # use worka in Deno 2 | 3 | see file_usage.js 4 | -------------------------------------------------------------------------------- /examples/deno/w.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/deno/w.ts -------------------------------------------------------------------------------- /examples/estimatePi/estimatePi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/estimatePi/estimatePi.js -------------------------------------------------------------------------------- /examples/estimatePi/estimatePiPrepared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/estimatePi/estimatePiPrepared.js -------------------------------------------------------------------------------- /examples/estimatePi/estimatePiWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/estimatePi/estimatePiWorker.js -------------------------------------------------------------------------------- /examples/estimatePi/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/estimatePi/example.html -------------------------------------------------------------------------------- /examples/estimatePi/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/estimatePi/example.js -------------------------------------------------------------------------------- /examples/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/index.js -------------------------------------------------------------------------------- /examples/node/file_usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/node/file_usage.js -------------------------------------------------------------------------------- /examples/node/patchNodeWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/node/patchNodeWorker.js -------------------------------------------------------------------------------- /examples/node/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/node/readme.md -------------------------------------------------------------------------------- /examples/node/sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/node/sort.js -------------------------------------------------------------------------------- /examples/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/package-lock.json -------------------------------------------------------------------------------- /examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/package.json -------------------------------------------------------------------------------- /examples/sendFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/examples/sendFile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/readme.md -------------------------------------------------------------------------------- /source/arrayParallel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/source/arrayParallel.js -------------------------------------------------------------------------------- /source/decorateWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/source/decorateWorker.js -------------------------------------------------------------------------------- /source/worka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/source/worka.js -------------------------------------------------------------------------------- /source/workerErrorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/source/workerErrorHandler.js -------------------------------------------------------------------------------- /source/workerGlue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/source/workerGlue.js -------------------------------------------------------------------------------- /source/workerGlueMulti.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/source/workerGlueMulti.js -------------------------------------------------------------------------------- /tools/glueAsExportedString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GrosSacASac/worka/HEAD/tools/glueAsExportedString.js --------------------------------------------------------------------------------