node-tar
node-tar copied to clipboard
tar for node
# What / Why When you attempt to extract a tarball through streams sometimes it will be closed with an error: `[ERR_STREAM_PREMATURE_CLOSE]: Premature close`, although the files are successfully extracted....
# What / Why Trying to extract a .zip file ## When Trying to follow `tar xzf file.zip` ``` tar.x({ f: filePath }) ``` ## Where * n/a ## How...
# What / Why node-tar crashes when extracting tar files created with [tar-stream](https://www.npmjs.com/package/tar-stream) which contains long linkpath I'm not sure if the tar files created by tar-stream are somehow invalid...
Hello, I am trying to upgrade tar version. However, getting this error TypeError: Cannot destructure property `isAbsolute` of 'undefined' or 'null'. 5 | import * as tmp from "tmp"; 6...
Hey, I see that you can specific the umask via `fmode` and `dmode` for extracting, but not creating. Is it currently not possible, or am I missing something?
# What / Why Would be nice if there was a way to specify in the tar options to ignore files if they don't exist. In my code, I am...
# What / Why I've lot's of `` files which maps to a human-readable filename in a database so I want to rename the file inside the archive. Something like...
# What / Why There is not equivalent like 'onentry' listener of tar.x in tar.c option So develper might not be able to have a fine-grain control on how each...
# What / Why my current tar version is 2.2.2, but I tried to upgrade it by using **npm install tar** command. but its version hasn't been updated ## When...
# What / Why Creating archive hangs if target is linux socket (or folder with socket files inside). At the same time, linux tar utility skips socket files, and ends...