@xmcl/system
TypeScript icon, indicating that this package has built-in type declarations

2.2.7 • Public • Published

Common Module

npm version Downloads Install size npm Build Status

A unified API to read directory or zip.

Support both nodejs and browser.

You can do read operations for zip or directory in same API:

import { openFileSystem } from "@xmcl/system";

let filePath = "/path/to/dir/"
const fs = await openFileSystem(filePath);
fs.readFile("a.txt"); // read /path/to/dir/a.txt

let zipPath = "/path/to/file.zip"
const fs = await openFileSystem(zipPath);
fs.readFile("a.txt"); // read a.txt in the file.zip!

Package Sidebar

Install

npm i @xmcl/system

Weekly Downloads

10

Version

2.2.7

License

MIT

Unpacked Size

57.6 kB

Total Files

15

Last publish

Collaborators

  • ci010