在Ubuntu下部署Vue环境(详细流程)
Posted 水香木鱼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Ubuntu下部署Vue环境(详细流程)相关的知识,希望对你有一定的参考价值。
在Ubuntu下下载安装nodejs
(1)更新包管理器apt与apt-get
sudo apt update
sudo apt-get update
(2)使用apt包管理器进行下载
sudo apt-get install nodejs # 下载nodejs
sudo apt-get install npm #下载npm,它是nodejs的包管理器(nodejs package manager)
(3)升级 npm
npm install npm -g
npm install -g npm
npm -g install npm
国内的npm不是很好用,使用cnpm代替npm的日常使用。
(1)升级或安装 cnpm
npm install cnpm -g
(2)你可以使用以下命令来查看所有全局安装的模块:
npm list -g
(3)请先安装git,安装命令请参考下面
sudo apt-get install git
安装Vue
(1)最新稳定版
cnpm install vue
(2)命令行工具
Vue.js 提供一个官方命令行工具,可用于快速搭建大型单页应用。
全局安装 vue-cli
$ cnpm install --global vue-cli
使用 cnpm 安装 webpack:
cnpm install webpack -g
创建一个基于 webpack 模板的新项目
vue init webpack my-project
这里需要进行一些配置,默认回车即可
This will install Vue 2.x version of the template.
For Vue 1.x use: vue init webpack#1.0 my-project
? Project name my-project //项目名称
? Project description A Vue.js project //项目作者
? Author runoob <test@runoob.com> //
? Vue build standalone
? Use ESLint to lint your code? Yes //路由
? Pick an ESLint preset Standard
? Setup unit tests with Karma + Mocha? Yes
? Setup e2e tests with Nightwatch? Yes
vue-cli · Generated "my-project".
To get started:
cd my-project
npm install
npm run dev
Documentation can be found at https://vuejs-templates.github.io/webpack
进入项目,安装并运行:
$ cd my-project
$ cnpm install # 安装依赖
$ cnpm run dev # 运行项目
DONE Compiled successfully in 4388ms
> Listening at http://localhost:8080
以上是关于在Ubuntu下部署Vue环境(详细流程)的主要内容,如果未能解决你的问题,请参考以下文章
ubuntu12上部署Django1.8.4+uwsgi+nginx超级详细流程配置到云服务器