Skip to content

Instantly share code, notes, and snippets.

@chnbohwr
Created June 25, 2018 09:16
Show Gist options
  • Save chnbohwr/554fb69f983272921b4ea8c1041df1e0 to your computer and use it in GitHub Desktop.
Save chnbohwr/554fb69f983272921b4ea8c1041df1e0 to your computer and use it in GitHub Desktop.
const { parentPort } = require('worker_threads');
parentPort.on('message', (buffer) => {
const int8Arr = new Int8Array(buffer);
int8Arr[0] = 99;
parentPort.postMessage('change value ok');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment