Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@eirslett/shoeset
Advanced tools
WARNING: This library is highly experimental, and may introduce breaking changes.
This is a 7z archive decompressor, written in Rust. The code is designed to be portable:
Supported decompression algorithms:
Features of 7z that are not supported:
The library is called "shoeset" because that's approximately how you pronounce "7z" in Norwegian.
Installation:
npm install @eirslett/shoeset
From Node.js:
import * as shoeset from '@eirslett/shoeset';
import fs from 'fs';
const archive = fs.readFileSync('foobar.7z');
const decompressed = shoeset.default.decompress(archive);
for (const file of decompressed.files) {
console.log('name', file.name);
console.log('data', file.data);
// If the file is UTF-8 encoded, we can log it as a string:
console.log(new TextDecoder().decode(file.data));
}
From the browser:
const js = import(`./node_modules/@eirslett/shoeset/shoeset.js`);
fetch('/foobar.7z').then(async response => {
const data = await response.arrayBuffer();
const mod = await js;
const result = mod.decompress(new Uint8Array(data));
for (const file of result.files) {
console.log('name', file.name);
console.log('data', file.data);
// If the file is UTF-8 encoded, we can log it as a string:
console.log(new TextDecoder().decode(file.data));
}
});
cargo build
to build the native binary, or ./build-npm.sh
to build the npm packagecargo test
to run the unit tests, or ./test.sh
to test the npm packageJust send me a pull request. I cannot guarantee that I have time to review it, if there are many PRs.
FAQs
A 7z decompression library
We found that @eirslett/shoeset demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.