
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@pulsar-edit/ls-archive
Advanced tools
List or read the files and folders inside archive files.
Supported file extensions:
npm install ls-archive
npm installgrunt to compile CoffeeScript codegrunt test to run the specsarchive = require 'ls-archive'
List the files and folders inside the archive file path. The callback gets
two arguments (error, archiveEntries).
archivePath - The string path to the archive file.
callback - The function to call after reading completes with an error or
an array of ArchiveEntry objects.
Read the contents of the file path in the archive path and invoke the callback
with those contents. The callback gets two arguments
(error, filePathContents).
archivePath - The string path to the archive file.
filePath - The string path inside the archive to read.
callback - The function to call after reading completes with an error or
the Buffer contents.
Read the contents of the gzipped archive path and invoke the callback with the
Buffer contents of the uncompressed paths. The callback gets two arguments
(error, pathContents).
gzipArchivePath - The string path to the gzipped archive file.
callback - The function to call after reading completes with an error or
the Buffer contents.
Read the contents of the bzipped archive path and invoke the callback with the
Buffer contents of the uncompressed paths. The callback gets two arguments
(error, pathContents).
bzipArchivePath - The string path to the bzipped archive file.
callback - The function to call after reading completes with an error or
the Buffer contents.
Class representing a path entry inside an archive file.
Is the entry a file?
Returns true if a file, false otherwise.
Is the entry a folder?
Returns true if a folder, false otherwise.
Is the entry a symbolic link?
Returns true if a symbolic link, false otherwise.
Get the path of this entry.
Returns the string path.
FAQs
A package for listing and reading files in archive files
We found that @pulsar-edit/ls-archive demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.