steedos-webapps
Installation
SKILL.md
Steedos Webapps | Steedos 软件包自定义 React 应用
Overview | 概述
Steedos packages can contain React + Vite sub-projects in the webapps/ directory. Each webapp is an independent Vite application that can be developed standalone and compiled as an IIFE script that self-registers as an amis Renderer component.
Steedos 软件包通过 webapps/ 目录管理 React 子项目。每个子项目是独立的 Vite 应用,可独立开发调试,也可编译为 amis 自注册组件。
Directory Structure | 目录结构
my-package/ # Steedos package root
├── webapps/ # React sub-projects
│ ├── designer/ # webapp 1
│ │ ├── src/
│ │ │ ├── components/ # React components
│ │ │ ├── amis-entry.ts # amis registration entry
│ │ │ ├── amis-jsx-shim.ts # JSX Runtime bridge
│ │ │ └── amis-renderer.css
Related skills