README
Node Virtual Threads & Worker Pool Manager
Virtual because in Node you cannot create a true child thread, BUT since the the event loop is so fast, you can simulate concurrent thread behavior using async strategies.
Virtual async workers
<script type="module">
import virtualWorkerPool from 'https://cdn.skypack.dev/virtual-worker-pool';
</script>
Virtual because in Node you cannot create a true child thread, BUT since the the event loop is so fast, you can simulate concurrent thread behavior using async strategies.