# front_app **Repository Path**: zzyLikeJaveForever/front_app ## Basic Information - **Project Name**: front_app - **Description**: 自动化测试平台前端代码 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-03-05 - **Last Updated**: 2025-07-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 自动化测试平台前端代码部分 此项目使用 [Ant Design Pro](https://pro.ant.design) 初始化 ## 环境准备 安装 `node_modules`: ```bash npm install ``` or ```bash yarn ``` ## 提供的脚本 Ant Design Pro 提供了一些有用的脚本来帮助您快速入门和构建 Web 项目、代码样式检查和测试。 “package.json”中提供的脚本。修改或添加其他脚本是安全的: ### 启动项目 ```bash npm start ``` ### 构建项目 ```bash npm run build ``` ### 检查代码样式 ```bash npm run lint ``` 您还可以使用脚本自动修复一些 lint 错误: ```bash npm run lint:fix ``` ### 测试代码 ```bash npm test ```