Package Exports
- siljs
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (siljs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
sil.js
SImple muLti-thread launcher in JavaScript, SIL.
Simple Multi-threading Launcher for Web. Simpler, and Faster.What is the origin of name?
It means thread and also light as "Sil". Sil (Korean: 실) means "thread" in English.1
How to load?
on webpack-base Project:
/* ... */
import _SIL from "siljs" /* ES6 */
import _SIL from "https://timtermtube.github.io/sil.js/index.js" /* module tag in html */
const _SIL = require("siljs"); /* CommonJS */
const SIL = _SIL.default;
const myThread = SIL.newThread((a) => {return a+a*2}, "WorkingAnt", [15], (x) => { /* When returned, It'll be worked */ console.log(x.data)});
/* ... */ Guides
https://github.com/timtermtube/sil.js/wiki
Supports
- Function as new Thread
- Get return datas from new thread
TODO (0.0.4)
- Support Async
- Support webpack Module System