
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@ulu/project-packager
Advanced tools
Simple utility for zipping project distributions into date-versioned, incremented archives
A lightweight Node.js module designed to automate the process of packaging your project's distribution files into unique, timestamped, and versioned ZIP archives. It's ideal for preparing builds for deployment, client delivery, or simply archiving specific versions of your project.
Related Links:
import { createPackage } from '@ulu/project-packager';
async function packageMyProject() {
// Create the ZIP/TAR
await createPackage({
name: "my-web-app", // Base name for the zip file
inputDir: "./dist/website/", // Directory to zip (e.g., your build output)
outputDir: "./release-packages/", // Where to save the zip file
timestamp: true, // Add date to filename (e.g., my-web-app-20250627.zip)
increment: true, // Add incrementing number if file exists (e.g., my-web-app-20250627-1.zip)
overwrite: false, // Prevent overwriting if increment is false and file exists
format: "zip", // Archive format (currently only 'zip' is robustly tested with archiver)
archiverOptions: { // Options passed directly to 'archiver'
zlib: { level: 9 } // Example: Set compression level
}
});
}
FAQs
Simple utility for zipping project distributions into date-versioned, incremented archives
The npm package @ulu/project-packager receives a total of 2 weekly downloads. As such, @ulu/project-packager popularity was classified as not popular.
We found that @ulu/project-packager demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.