@run0/jiki
v0.1.1
Published
Lightweight browser-based Node.js runtime with virtual filesystem, npm support, and dev servers.
Downloads
31
Readme
A sandboxed Node.js runtime that runs entirely client-side. Filesystem, shell, npm / pnpm, and dev servers. No backend required.
A few lines is all it takes
import { boot } from "@run0/jiki";
const container = boot();
container.writeFile("/index.js", 'console.log("Hello from the browser!")');
await container.run("node index.js");
// → Hello from the browser!Learn more
License
MIT
