Skip to content

Instantly share code, notes, and snippets.

View moslem435's full-sized avatar

yume moslem435

View GitHub Profile
@moslem435
moslem435 / vfsStore.ts
Last active April 17, 2026 14:06
Lightweight Virtual File System (VFS) Store powered by Zustand
import { create } from 'zustand';
// 定义文件系统节点基础结构
export interface VFSNode {
id: string;
name: string;
type: 'file' | 'directory';
parentId: string | null;
content?: string | Uint8Array;
createdAt: number;