siljs

Simple Multi-thread launcher in JavaScript

Usage no npm install needed!

<script type="module">
  import siljs from 'https://cdn.skypack.dev/siljs';
</script>

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