Go to file
2024-09-18 21:07:34 +08:00
__mocks__ 解决大部分用例问题 2022-06-02 10:00:09 +08:00
.github Merge pull request #10633 from Jiaohm/branch2 2024-07-17 09:50:41 +08:00
.husky fix: 修复css变量文件编译报错问题&chore:新增样式校验 (#5862) 2022-12-05 20:03:09 +08:00
.vscode Merge pull request #7411 from 2betop/crud-reload 2023-07-10 11:09:33 +08:00
docs/zh-CN fix: 文档文案修改 (#10874) 2024-09-10 20:49:02 +08:00
examples feat: amis 添加更多扩展功能 (#10924) 2024-09-18 19:03:49 +08:00
mock fix: 修复 crud nested 模式深层次点选异常 (#9440) 2024-01-16 11:34:05 +08:00
packages feat: amis 添加更多扩展功能 (#10924) 2024-09-18 19:03:49 +08:00
scripts Merge pull request #10915 from 2betop/chore-min-svg 2024-09-18 10:51:50 +08:00
types 优化 pdfjs-dist 声明 2024-05-29 20:05:26 +08:00
.dockerignore feat: office-view 支持内嵌字体;数学公式;初步支持 textbox;修复 highlight 和加粗渲染不正确问题 (#6459) 2023-03-23 20:53:51 +08:00
.editorconfig feat: Office Viewer 支持 Excel (#9826) 2024-03-20 11:08:43 +08:00
.gitattributes feat: Office viewer 的 Excel 中实现公式解析和执行 2024-05-07 20:47:20 +08:00
.gitignore chore: 优化npm发布流程 (#9396) 2024-01-10 18:41:12 +08:00
.gitpod.yml 使用 gitpod 运行开发环境 #7229 (#7230) 2023-06-28 21:14:47 +08:00
.npmrc chore: 添加.npmrc, revision.json添加ignore 2022-12-01 10:49:47 +08:00
.prettierrc 翻译基于 key 而不是中文,方便以后其他语言扩展 (#1416) 2021-01-21 18:13:04 +08:00
.stylelintrc.json fix: 修复css变量文件编译报错问题&chore:新增样式校验 (#5862) 2022-12-05 20:03:09 +08:00
.swcrc chore: jest 使用 @swc/jest 编译,提升性能 2024-02-02 13:55:23 +08:00
.travis.yml ECharts 编辑器初始 2020-10-29 19:52:25 +08:00
amis.code-workspace chore: 调整编辑器样式解决点选被挡住问题 (#10221) 2024-05-13 10:44:45 +08:00
deploy-gh-pages.sh 修复 schema.json 编译问题 2022-06-02 15:37:48 +08:00
fis-conf.js feat: jssdk 支持 qiankun, wujie 微前端框架作为子应用加载 2024-09-10 17:57:08 +08:00
i18nConfig.ts chore: editor开发态国际化 (#7903) 2023-08-22 15:25:08 +08:00
index.html chore: 调整公式输入交互并补充编辑器模版文档 (#10034) 2024-04-16 16:39:12 +08:00
lerna.json bump: 6.8.0 2024-09-03 09:10:51 +08:00
LICENSE Update LICENSE (#7767) 2023-08-10 10:46:25 +08:00
package.json feat: 支持异步渲染器并将所有内置渲染调整为异步 2024-09-17 23:18:26 +08:00
publish.json chore: 优化npm发布流程 (#9396) 2024-01-10 18:41:12 +08:00
pull_request_template.md chore: Copilot for Pull Request 功能下线了, 删除相关配置 (#8982) 2023-12-01 15:15:18 +08:00
README.md Update README.md 2024-04-02 11:14:42 +08:00
tsconfig.json feat: 主题编辑器渲染器开源 (#8820) 2023-11-23 19:57:10 +08:00
vite.config.ts feat: 主题编辑器渲染器开源 (#8820) 2023-11-23 19:57:10 +08:00

如流群3395342 | 如流群25511067|

build license version language codecov last

前端低代码框架,通过 JSON 配置就能生成各种后台页面,极大减少开发成本,甚至可以不需要了解前端。

开发指南

以下是参与开发 amis 才需要看的,使用请看前面的文档。

如果 github 下载慢可以使用 gitee 上的镜像。

推荐使用 node 12/14/16。npm 7+ 因为用到了 workspaces 功能。

# 安装项目 npm 依赖,在 node 12 下会有报错但不影响正常使用。
npm i --legacy-peer-deps

# 启动项目,等编译结束后通过 http://127.0.0.1:8888/examples/pages/simple 访问。
npm start

如果是开发编辑器,需要访问 http://127.0.0.1:8888/packages/amis-editor/

测试

注意:本地修改代码后,执行测试用例(npm test --workspaces)之前需要先执行npm run build完成编译,因为 jest 并不支持 TypeScript

# 安装依赖
npm i --legacy-peer-deps

# 执行构建
npm run build

# 执行测试用例
npm test --workspaces

# 测试某个用例
# <spec-name>为用例名称比如inputImage
npm test --workspace amis -- -t <spec-name>

# 运行某个单测文件
./node_modules/.bin/jest packages/amis/__tests__/renderers/Form/buttonToolBar.test.tsx

# 运行某个单测文件里的某个例子
./node_modules/.bin/jest packages/amis/__tests__/renderers/Form/buttonToolBar.test.tsx -t 'Renderer:button-toolbar'

# 查看测试用例覆盖率
npm run coverage

# 更新 snapshot
npm run update-snapshot

# 更新单个 snapshot
# <spec-name>为用例名称比如inputImage
npm run update-snapshot --workspace amis -- -t  <spec-name>

发布版本

# 发布内部 registry
npm run publish

# 发布外网环境
# 先通过一下命令设置版本号
npm run version
npm run release

如何贡献

请使用分支开发,首先创建分支

git checkout -b feat-xxx

开发提交后使用 git push --set-upstream origin feat-xxx 创建远程分支。

然后通过系统提示的 https://github.com/xxx/amis/pull/new/feat-xxx 链接来提交 PR。

请采用 typescript 编写,所有合理的改动、新的公用渲染器、用例或者文档的提交都会被接收。

贡献者

低代码平台

amis 只能实现前端低代码,如果需要完整的低代码平台推荐使用爱速搭