-
-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
Is your feature request related to a problem? Please describe.
I need an option to create a writable stream for the blob
Describe the solution you'd like
Instead off
await Drive.disk('azure').putStream('unicorn.jpg', stream)
I want to be able to do
const unicornStream = await Drive.disk('azure').getWriteableStream('unicorn.jpg')
someStream1.pipe(unicornStream)
someStream2.pipe(unicornStream)
someStream3.pipe(unicornStream)
Or even
const unicornReadStream = await Drive.disk('azure').getStream('unicorn.txt')
const unicornWriteStream = await Drive.disk('azure').getWriteableStream('unicorn.txt.xz.aes')
await pipeline(
unicornReadStream,
xz.createXZ(),
crypto.createCipheriv(algorithm, key, iv),
unicornWriteStream
);
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels