vue打包 运行开发服务器 localhost:4000 编译(压缩JS和CSS等) 单元测试 运行所有测试

npm install
npm run dev
npm run build

项目运行
1.环境依赖 npm i

2.本地运行 npm run serve

3.打包运行 npm run build

 @types/node

npm install --save @types/node

npm install @types/node --save

 =======================================================================

# clone the project
git clone https://github.com/PanJiaChen/vue-element-admin.git

# enter the project directory
cd vue-element-admin

# install dependency
npm install

# develop
npm run dev
==============================================================================

Debugger for Firefox

Debugger for Chrome


{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "vuejs: chrome",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}/src",
"breakOnLoad": true,
"sourceMapPathOverrides": {
"webpack:///./src/*": "${webRoot}/*"
}
},
{
"type": "firefox",
"request": "launch",
"name": "vuejs: firefox",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}/src",
"pathMappings": [{ "url": "webpack:///src/", "path": "${webRoot}/" }]
}
]
}

构建步骤

# 安装依赖
npm install

npm run dev

编译(压缩JS和CSS等)

npm run build

单元测试

npm run unit

运行所有测试

npm test