Go to file
2024-03-21 15:46:03 +08:00
__mocks__ 解决大部分用例问题 2022-06-02 10:00:09 +08:00
.github chore: 换一下 office-viewer 包名 (#7321) 2023-07-03 14:31:27 +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 chore: 公式编辑器 input 换成 codemirror 提升交互体验 (#9821) 2024-03-20 20:30:50 +08:00
examples feat: Office Viewer 支持 Excel (#9826) 2024-03-20 11:08:43 +08:00
mock fix: 修复 crud nested 模式深层次点选异常 (#9440) 2024-01-16 11:34:05 +08:00
packages 修复 ghpages 没有 xlsx 问题 (#9836) 2024-03-21 15:46:03 +08:00
scripts chore: 去掉 bot 示例中的 pickle 依赖 (#9640) 2024-02-22 14:45:20 +08:00
types/uncontrollable 调整为 monorepo 2022-06-01 15:06:00 +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 (#9826) 2024-03-20 11:08:43 +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: 换一下 office-viewer 包名 (#7321) 2023-07-03 14:31:27 +08:00
deploy-gh-pages.sh 修复 schema.json 编译问题 2022-06-02 15:37:48 +08:00
fis-conf.js 修复 ghpages 没有 xlsx 问题 (#9836) 2024-03-21 15:46:03 +08:00
i18nConfig.ts chore: editor开发态国际化 (#7903) 2023-08-22 15:25:08 +08:00
index.html feat: Office Viewer 支持 Excel (#9826) 2024-03-20 11:08:43 +08:00
lerna.json bump: 6.2.1 2024-02-29 21:19:54 +08:00
LICENSE Update LICENSE (#7767) 2023-08-10 10:46:25 +08:00
package.json fix: rollup版本导致的打包问题 2024-03-12 15:52:07 +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-02-22 21:07:27 +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 只能实现前端低代码,如果需要完整的低代码平台推荐使用爱速搭