# Web端图片标注工具 **Repository Path**: chinafitz/imageAnnotationTool ## Basic Information - **Project Name**: Web端图片标注工具 - **Description**: 供机器学习训练用的图片标注工具 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 4 - **Forks**: 2 - **Created**: 2021-03-21 - **Last Updated**: 2024-04-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 对npm的源进行操作 修改npm的源加快依赖包的安装速度 ``` shell # 换成淘宝的源快很多 npm config set registry http://registry.npm.taobao.org ``` 查看是否更改源成功 ``` shell npm get registry # http://registry.npm.taobao.org ``` ## 下载项目依赖 切换到项目根目录下执行以下命令 ``` shell npm i ``` ## 项目相关操作 本地运行项目 ``` shell npm run start ``` 打包项目 ``` shell npm run build ``` ## git注意 老哥们拉项目和提交项目时如果报错注意看怎么解决 特别是提交项目,**千万别执行** ``` shell git push -f 远程仓库别名 分支名称 ``` **总之任何-f或--force的配置命令都尽量别执行, 执行前清楚是搞啥的, 不然搞不好项目所有源代码就没了...**