Product
Socket Now Supports uv.lock Files
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
@browserfs/fs-iso
Advanced tools
iso
BackendBrowserFS backend for iso
files.
Please read the BrowserFS documentation!
This package adds IsoFS
, which allows you to create a readonly file system from a iso file.
For more information, see the API documentation.
npm install @browserfs/fs-iso
🛈 The examples are written in ESM. If you are using CJS, you can
require
the package. If running in a browser you can add a script tag to your HTML pointing to thebrowser.min.js
and use BrowserFS Iso via the globalBrowserFS_ISO
object.
You can't use IsoFS on its own. You must import the core in order to use the backend, and must register it if you plan on using configure
:
import { configure, fs, registerBackend } from '@browserfs/core';
import { IsoFS } from '@browserfs/fs-iso';
registerBackend(IsoFS);
const res = await fetch('http://example.com/image.iso');
const isoData = await res.arrayBuffer();
await configure({ '/mnt/iso': { fs: 'IsoFS', options: { isoData } } });
const contents = fs.readFileSync('/mnt/iso/in-image.txt', 'utf-8');
console.log(contents);
FAQs
Zip backend for BrowserFS
The npm package @browserfs/fs-iso receives a total of 0 weekly downloads. As such, @browserfs/fs-iso popularity was classified as not popular.
We found that @browserfs/fs-iso 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.
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.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.