Fully type-safe Web Workers with zero boilerplate
TypeScript and ECMAScript have some of the most beautiful constructs and syntaxes to do parallel, non-blocking programmingâ€"but unfortunately, only for standard APIs like fetch in the browser or file IO in Node. When implementing anything CPU-bound in TypeScript, offloading it into a different, parallel execution context and exposing an equally type-safe and flexible API for it is non-trivial.
Read more