siljs
TypeScript icon, indicating that this package has built-in type declarations

0.0.345 • Public • Published

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

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i siljs

      Weekly Downloads

      12

      Version

      0.0.345

      License

      MIT

      Unpacked Size

      37.4 kB

      Total Files

      15

      Last publish

      Collaborators

      • teemtermtube