Files
NebulaShell/store/@{Falck}/web-toolkit/manifest.json
Falck 76147bae94 初始提交 - FutureOSS v1.0 插件化运行时框架
一切皆为插件的开发者工具运行时框架

🧩 核心特性:
  - 插件热插拔 (importlib 动态加载)
  - 依赖自动解析 (拓扑排序 + 循环检测)
  - 企业级稳定 (熔断/降级/重试/隔离)
  - 事件驱动 (发布/订阅事件总线)
  - 完整配置 (YAML 配置 + 热重载)
2026-04-06 09:57:10 +08:00

22 lines
587 B
JSON

{
"metadata": {
"name": "web-toolkit",
"version": "1.0.0",
"author": "Falck",
"description": "Web 工具包 - 提供静态文件服务、模板渲染、路由等 Web 开发工具",
"type": "utility"
},
"config": {
"enabled": true,
"args": {
"host": "0.0.0.0",
"port": 8080,
"static_dir": "./static",
"template_dir": "./templates",
"index_files": ["index.html", "index.htm"]
}
},
"dependencies": ["http-api", "http-tcp", "plugin-storage"],
"permissions": ["http-api", "http-tcp", "json-codec", "plugin-storage"]
}