部署vue.js项目

一、项目打包
vue项目下使用npm run build命令进行打包,生成一个dist目录
二、文件上传
三、新建目录

mkdir vue_project

三、写node启动脚本
cd vue_project
新建一个app.js文件
touch app.js
编辑app.js文件
vim app.js


const fs = require('fs');
const path = require('path');
const express = require('express');
const app = express();

app.use(express.static(path.resolve(__dirname, './dist')))

app.get('*', function(req, res) {
    const html = fs.readFileSync(path.resolve(__dirname, './dist/index.html'), 'utf-8')
    res.send(html)
})

app.listen(8002);

四、运行

cd vue_project
npm install
pm2 start app.js

五、

//查看运行的vue进程
pm2 show 0
//关闭运行的vue进程
pm2 stop 0

你可能感兴趣的:(部署vue.js项目)