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

Patch devcontainer.json #3448

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

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