# JX_manage **Repository Path**: sshch/JX_manage ## Basic Information - **Project Name**: JX_manage - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 3 - **Created**: 2019-11-18 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #### 一、环境准备 - Node 安装(官网下载安装即可) - npm 安装(node 安装同时会安装 npm) - 环境检测 > node -v npm -v - cnpm 安装(用于替换 npm 命令) > npm install -g cnpm --registry=https://registry.npm.taobao.org #### 二、进入项目根目录执行以下命令 Install `node_modules`: ```bash npm install ``` or ```bash yarn ``` or ```bash cnpm install ``` #### 二、本地调试项目 ```bash npm start ``` or ```bash cnpm start ``` #### 三、项目打包 ```bash npm run build ``` or ```bash cnpm run build ``` #### Check code style ```bash npm run lint ``` You can also use script to auto fix some lint error: ```bash npm run lint:fix ``` #### Test code ```bash npm test ```