Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[spam] #3448

Closed
wants to merge 1 commit into from
Closed

[spam] #3448

wants to merge 1 commit into from

Commits on Oct 25, 2024

  1. Patch devcontainer.json

    // threads.mjs
    import { Worker, isMainThread,
      workerData, parentPort } from 'node:worker_threads';
    
    if (isMainThread) {
      const data = 'some data';
      const worker = new Worker(import.meta.filename, { workerData: data });
      worker.on('message', msg => console.log('Reply from Thread:', msg));
    } else {
      const source = workerData;
      parentPort.postMessage(btoa(source.toUpperCase()));
    }
    
    // run with `node threads.mjs`
    Selemela07 authored Oct 25, 2024
    Configuration menu
    Copy the full SHA
    7935519 View commit details
    Browse the repository at this point in the history