node-archiver
node-archiver copied to clipboard
Create archiver from previews state to enable resumable process
Hello guys,
I'd like to use node-archiver to build a zip file. The source and target are blobs of Azure BlobStorage, in other words, I'll get files from BlobReadStream and send zip file for BlobWriteStream.
I was wondering if is it possible to stop process before the archiver done, save state, and restart a new process that it will continue exact from last one stopped after got the saved state . I wanna break the process in small recursive processes. The Azure BlobStorage has an API to send append chunks to file that "already exists", I can use this way to send parts of the same file of different process.
How can I do this? Any one have an idea?