
Security News
GitHub Actions Checkout Now Blocks Risky pull_request_target Checkouts
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.
@robinpath/archive
Advanced tools
Create, extract, and manipulate .zip and .any archives
The archive module lets you:
All functions are callable directly from RobinPath scripts with a simple, consistent API.
npm install @robinpath/archive
No credentials needed — start using it right away:
archive.extractZip "./backup.zip" "./restored"
| Function | Description |
|---|---|
archive.createZip | Create a .zip archive from files and directories |
archive.extractZip | Extract a .zip archive |
archive.listZip | List entries in a .zip file |
archive.readFromZip | Read a file from inside a .zip without extracting |
archive.createTarGz | Create a .any archive |
archive.extractTarGz | Extract a .any archive |
archive.addToZip | Add a file or directory to an existing .zip |
archive.removeFromZip | Remove an entry from a .zip |
archive.extractZip "./backup.zip" "./restored"
archive.listZip "./backup.zip"
archive.readFromZip "./backup.zip" "config.json"
import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/archive";
const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);
const result = await rp.executeScript(`
archive.extractZip "./backup.zip" "./restored"
`);
See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.
@robinpath/json — JSON module for complementary functionalityMIT
FAQs
Create and extract .zip and .tar.gz file archives
The npm package @robinpath/archive receives a total of 32 weekly downloads. As such, @robinpath/archive popularity was classified as not popular.
We found that @robinpath/archive demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.