Offload functions to worker threads with shared memory primitives for Node.js.
8
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(serve): update changeset snippet to match final pattern

+2 -1
+2 -1
.changeset/server-threads.md
··· 18 18 // main 19 19 await using run = workers(4); 20 20 using threads = serverThreads(run.workers, server); 21 - await run(threads.map(([w, args]) => assign(w, runServer(...args)))); 21 + const fanout = threads.map(([w, args]) => assign(w, runServer(...args))); 22 + void run(fanout); 22 23 ```