SkillAgentSearch skills...

Emscripten

Emscripten backend for ZenFS

Install / Use

/learn @zen-fs/Emscripten
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

ZenFS Emscripten Backend

ZenFS backend for usage with Emscripten.

For more information, see the docs.

Please read the ZenFS core documentation!

Installing

[!IMPORTANT] This project is licensed under the LGPL (v3+).

npm install @zenfs/emscripten

Usage

import { configure, fs } from '@zenfs/core';
import { Emscripten } from '@zenfs/emscripten';

// Note: this assumes you have included Emscripten correctly and have the global `FS` variable available.
await configureSingle({ backend: Emscripten, FS: FS });

if (!fs.existsSync('/test.txt')) {
	fs.writeFileSync('/test.txt', 'This is in the Emscripten file system!');
}

const contents = fs.readFileSync('/test.txt', 'utf-8');
console.log(contents);

Related Skills

View on GitHub
GitHub Stars6
CategoryDevelopment
Updated1mo ago
Forks4

Languages

TypeScript

Security Score

90/100

Audited on Mar 2, 2026

No findings