[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-75491":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":17,"stars7d":18,"stars30d":19,"stars90d":16,"forks30d":16,"starsTrendScore":20,"compositeScore":21,"rankGlobal":10,"rankLanguage":10,"license":22,"archived":23,"fork":23,"defaultBranch":24,"hasWiki":25,"hasPages":23,"topics":26,"createdAt":10,"pushedAt":10,"updatedAt":27,"readmeContent":28,"aiSummary":29,"trendingCount":16,"starSnapshotCount":16,"syncStatus":30,"lastSyncTime":31,"discoverSource":32},75491,"zenbu.js","zenbu-labs\u002Fzenbu.js","zenbu-labs","The framework for building hackable software","https:\u002F\u002Fzenbu.dev",null,"TypeScript",234,13,1,9,0,6,12,127,18,71.44,"MIT License",false,"main",true,[],"2026-06-12 04:01:18","\u003Cp align=\"center\">\n  \u003Cimg src=\".\u002Fpackages\u002Fwebsite\u002Fapp\u002Ficon.png\" alt=\"Zenbu.js Logo\" width=\"100\" \u002F>\n\u003C\u002Fp>\n\n\u003Cdiv align=\"center\">\n\n[![CI](https:\u002F\u002Fimg.shields.io\u002Fgithub\u002Factions\u002Fworkflow\u002Fstatus\u002Fzenbu-labs\u002Fzenbu.js\u002Fci.yml?branch=main&label=CI)](https:\u002F\u002Fgithub.com\u002Fzenbu-labs\u002Fzenbu.js\u002Factions)\n[![License](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002FLicense-MIT-blue.svg)](https:\u002F\u002Fgithub.com\u002Fzenbu-labs\u002Fzenbu.js\u002Fblob\u002Fmain\u002FLICENSE)\n[![npm version](https:\u002F\u002Fimg.shields.io\u002Fnpm\u002Fv\u002F@zenbujs\u002Fcore.svg?label=npm%20package)](https:\u002F\u002Fwww.npmjs.com\u002Fpackage\u002F@zenbujs\u002Fcore)\n![Status: Alpha](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Fstatus-alpha-orange)\n\n\u003C\u002Fdiv>\n\n\u003Cp align=\"center\">\n\n  \u003Cbr\u002F>\n\n  \u003Cspan>\n      \u003Ca href=\"https:\u002F\u002Fzenbu.dev\" style=\"text-decoration: none;\">Zenbu.js\u003C\u002Fa> is a JavaScript framework for building hackable software.\n  \u003C\u002Fspan>\n\n\u003C\u002Fp>\n\n\u003Cp align=\"center\">\n  \u003Ca href=\"https:\u002F\u002Fzenbulabs.mintlify.app\" style=\"text-decoration: none;\">Documentation\u003C\u002Fa>\n  &nbsp;&nbsp;·&nbsp;&nbsp;\n  \u003Ca href=\"https:\u002F\u002Fdeepwiki.com\u002Fzenbu-labs\u002Fzenbu.js\" style=\"text-decoration: none;\">DeepWiki\u003C\u002Fa>\n  &nbsp;&nbsp;·&nbsp;&nbsp;\n  \u003Ca href=\"https:\u002F\u002Fdiscord.gg\u002Ft3jzHHfc6z\" style=\"text-decoration: none;\">Discord\u003C\u002Fa>\n  &nbsp;&nbsp;·&nbsp;&nbsp;\n  \u003Ca href=\"https:\u002F\u002Fwww.zenbu.dev\u002Fdemo\" style=\"text-decoration: none;\">Try the demo&nbsp;→\u003C\u002Fa>\n\u003C\u002Fp>\n\n\u003Cbr \u002F>\n\n\u003Cp align=\"center\">\n  \u003Cb>Get started in 5 seconds\u003C\u002Fb>\n\u003C\u002Fp>\n\n```bash\nnpx create-zenbu-app\n```\n\n\u003Cbr \u002F>\n\n## Why Zenbu.js\n\n1. Coding agents can generate and customize software on demand for a specific use case. A hackable app gives them full access to do that.\n\n2. Letting people modify your app means more directions get explored than you could reach on your own.\n\n3. Extensible code tends to be more maintainable, because it’s already written to be changed.\n\n## How does it work\n\nUsers can modify Zenbu apps in 2 ways:\n\n### Modifying the raw source code\n\nWhen a Zenbu app is built for production, there is no TypeScript compilation or bundling step. The same source code you wrote in development will be downloaded by the user and stored in `~\u002F.zenbu\u002F\u003Capp-name>`. When the app launches, it discovers the app code, dynamically compiles it, and runs the JavaScript using Electron's Node.js runtime.\n\nAll the source code in this directory is being watched for changes. When there is a change, the app will re-run affected code nearly instantly (also known as hot reloading). Hot reloading is implemented both in the main process and the renderer process.\n\nThe codebase stored inside `~\u002F.zenbu\u002F\u003Capp-name>` is tracked by git. This makes it possible for a user to edit the source code without losing changes when the application code gets updated. The git repo is linked to a remote repository owned by the developer, so updates are represented as running `git pull` on the user's device.\n\n### Injecting plugins\n\nEditing the raw source code of the application can be risky. If a user and the developer have conflicting edits, the user needs to spend time merging changes. This motivates plugins - a way to inject code into the application that can modify behavior without editing the raw source code.\n\nPlugins run in the same process as the application code and get access to the same APIs. This means any feature written in the main app could be written as a plugin.\n\nWhen you write an app in Zenbu your code is **extensible by default**, so plugins can extend it without you designing a plugin API up front. For more complex parts of your app that need a richer extension model, you can define your own on top.\n\nPlugins hot reload just like application code, because application code is itself implemented as a plugin.\n\n## What this is not\n\nZenbu.js is not a one-size-fits-all model for building extensible applications. It provides a general-purpose way to load external code, with primitives for hot reloading, sharing state, and extending UI. For more complex behavior that isn't covered by Zenbu's architecture, you'll need your own conventions and systems for how that part gets extended, defined inside your Zenbu app.\n\n## Compatibility\n\n| Runtime        | Status       |\n| -------------- | ------------ |\n| Electron       | 🧪 Alpha     |\n| Node.js        | 🚧 WIP       |\n| Tauri          | 🚧 WIP       |\n| Browser-native | 🚧 WIP       |\n\n## Roadmap\n\n- Non sandboxed out-of-process plugins\n- Improved sandboxing controls for plugins\n- Performance work\n- Migrate custom node HMR to Vite's [environments API](https:\u002F\u002Fvite.dev\u002Fguide\u002Fapi-environment)\n- HMR for `node_modules`, advice, and content scripts\n- Windows and Linux support\n- Automatic CLI per app\n- Git-based auto updater\n- WebRTC adapter for zenrpc and kyju (the database)\n- Add optimized production mode that pre-compiles and bundles the typescript to javascript (would opt project out of allowing its source code edited at runtime by user)\n- Support for running outside of electron (local node.js process + website, within tauri, natively on the web)\n- Plugin devtools\n\n## Project\n\nZenbu.js is a project from [Zenbu Labs](https:\u002F\u002Fgithub.com\u002Fzenbu-labs).\n\n## FAQ\n\n\u003Cdetails>\n\u003Csummary>\u003Cb>What happens if a user edits the app and it conflicts with a future update?\u003C\u002Fb>\u003C\u002Fsummary>\n\n\u003Cbr\u002F>\n\nThe source code on the user's device is tracked by git, so you can alert them when there's a conflict. In practice the user can use their coding agent to resolve the conflict\n\nUsers also have the option to make changes only via plugins, which can never have merge conflicts.\n\n\u003C\u002Fdetails>\n\n\u003Cdetails>\n\u003Csummary>\u003Cb>How does my app become extensible?\u003C\u002Fb>\u003C\u002Fsummary>\n\n\u003Cbr\u002F>\n\nZenbu.js organizes your app so new code can be loaded into your application. The APIs are designed with the expectation that new unknown code will want to plug into your application to access and modify functionality you defined.\n\n\u003C\u002Fdetails>\n\n\u003Cdetails>\n\u003Csummary>\u003Cb>Do I need to use Electron?\u003C\u002Fb>\u003C\u002Fsummary>\n\n\u003Cbr\u002F>\n\nFor now, yes. But support for other runtimes like Tauri and pure Node.js is coming soon.\n\n\u003C\u002Fdetails>\n\n\u003Cdetails>\n\u003Csummary>\u003Cb>Is it ready for production usage?\u003C\u002Fb>\u003C\u002Fsummary>\n\n\u003Cbr\u002F>\n\nNo - Zenbu.js is still in alpha, so it may still contain bugs and have large API changes\n\n\u003C\u002Fdetails>\n\n\u003Cbr \u002F>\n\n\u003Cp align=\"center\">\n  \u003Ca href=\"https:\u002F\u002Fzenbulabs.mintlify.app\" style=\"text-decoration: none;\">Read the docs&nbsp;→\u003C\u002Fa>\n\u003C\u002Fp>\n","Zenbu.js 是一个用于构建可高度定制软件的JavaScript框架。它采用TypeScript编写，支持用户通过直接修改源代码或注入插件的方式对应用程序进行个性化调整，从而满足特定需求。其核心功能包括即时热重载、无编译步骤直接运行以及基于Git版本控制的代码管理，确保了开发过程中的灵活性与安全性。这种设计使得Zenbu.js特别适合那些希望提供给最终用户更多自定义选项的应用场景，如开发者工具、教育软件等，同时也为探索新功能提供了无限可能。",2,"2026-06-11 03:52:56","CREATED_QUERY"]