download
raw
723 Bytes
'use strict'
const { test } = require('node:test')
const assert = require('node:assert')
const { join } = require('path')
const { once } = require('events')
const { MessageChannel } = require('worker_threads')
const ThreadStream = require('..')
test('message events emitted on the stream are posted to the worker', async function (t) {
const { port1, port2 } = new MessageChannel()
const stream = new ThreadStream({
filename: join(__dirname, 'on-message.js'),
sync: false
})
t.after(() => {
stream.end()
})
stream.emit('message', { text: 'hello', takeThisPortPlease: port1 }, [port1])
const [confirmation] = await once(port2, 'message')
assert.strictEqual(confirmation, 'received: hello')
})

Xet Storage Details

Size:
723 Bytes
·
Xet hash:
00004f6c40d55163787da886b1bed6aa48bc8dafb9ba6ecc3f26a09e15c1371c

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.