1.0.0 • Published 3 months ago

@createlumina/system v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

Common Module

Version made for Lumina projects. Original credits goes to Voxelum/minecraft-launcher-core-node

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 '@createlumina/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!