eugeneCN / vue-ssr-template

Vue.js2.x 服务端渲染脚手架,拿来即用。
75 stars 23 forks source link
vue vue-server-renderer vue-ssr

vue-ssr-template

Vue.js2.x 服务端渲染脚手架,拿来即用。

核心模块

Node 版本

node 6.x
node 7.x

本地运行

npm install or yarn install
npm run dev

打包项目

npm install or yarn install
npm run build
npm start

删除已打包项目

npm run del

项目部署

个人建议生产环境不放源代码,so .. 做了一些打包脚本 npm run build 后生成dist文件夹,将dist文件夹放在我们的生产服务器,安装依赖后通过npm run pm2 来启动项目(确保你已经安装了pm2),了解pm2

npm install or yarn install
npm run pm2

参考资源

vue-hackernews-2.0