# React Basic **Repository Path**: annunx/react-basic ## Basic Information - **Project Name**: React Basic - **Description**: No description available - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-13 - **Last Updated**: 2021-07-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # React App Base React App 创建时默认生成的项目文件,备份至仓库,主要解决`create-react-app`创建缓慢问题 ## 脚本 ``` // 启动项目 yarn start // 启动项目测试 yarn test // 构建项目 yarn build // 释放配置文件 yarn eject ``` ## 删除git仓库库 ``` // 移除远程仓库 git remote remove origin // 或者直接删除项目根目录.git文件夹,重新初始化 ```