ZenFS backend for Zip files.
Please read the ZenFS documentation!
This package adds the Zip
backend, which allows you to create a readonly file system from a zip file.
For more information, see the API documentation.
[!NOTE] The examples are written in ESM.
For CJS, you canrequire
the package.
If using a browser environment, you can use a<script>
withtype=module
(you may need to use import maps)
You can't use Zip
on its own. You must import the core in order to use the backend.
import { configure, fs } from '@zenfs/core';
import { Zip } from '@zenfs/zip';
const res = await fetch('http://example.com/archive.zip');
await configure({
mounts: {
'/mnt/zip': { backend: Zip, data: await res.arrayBuffer() },
},
});
const contents = fs.readFileSync('/mnt/zip/in-archive.txt', 'utf-8');
console.log(contents);