vue在乌班图下搭建项目
npm搭建项目
安装nodejs
nodejs下集成了npm。
nodejs建议用apt安装,这样安装方式可以减少配置环境变量的环节,后续安装插件也更方便。
首先设置下载什么版本。
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
这里下载的是nodejs14的版本,这个版本根据网上统计,用的人是最多的。
但是建议下载nodejs20的版本,因为最新的npm支持nodejs18~nodejs20,nodejs14有点落后了。
遇到如下界面等待一段时间就可以了。
================================================================================
================================================================================
DEPRECATION WARNING
Node.js 14.x is no longer actively supported!
You will not receive security or critical stability updates for this version.
You should migrate to a supported version of Node.js as soon as possible.
Use the installation script that corresponds to the version of Node.js you
wish to install. e.g.
* https://deb.nodesource.com/setup_16.x — Node.js 16 "Gallium"
* https://deb.nodesource.com/setup_18.x — Node.js 18 LTS "Hydrogen" (recommended)
* https://deb.nodesource.com/setup_19.x — Node.js 19 "Nineteen"
* https://deb.nodesource.com/setup_20.x — Node.js 20 "Iron" (current)
Please see https://github.com/nodejs/Release for details about which
version may be appropriate for you.
The NodeSource Node.js distributions repository contains
information both about supported versions of Node.js and supported Linux
distributions. To learn more about usage, see the repository:
https://github.com/nodesource/distributions
================================================================================
================================================================================
Continuing in 20 seconds ...
================================================================================
▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
================================================================================
SCRIPT DEPRECATION WARNING
This script, located at https://deb.nodesource.com/setup_X, used to
install Node.js is deprecated now and will eventually be made inactive.
Please visit the NodeSource distributions Github and follow the
instructions to migrate your repo.
https://github.com/nodesource/distributions
The NodeSource Node.js Linux distributions GitHub repository contains
information about which versions of Node.js and which Linux distributions
are supported and how to install it.
https://github.com/nodesource/distributions
SCRIPT DEPRECATION WARNING
================================================================================
▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
================================================================================
如果是第一次使用apt,需要更新一下apt的源。
sudo apt update
然后安装nodejs。
sudo apt install -y nodejs
这里的-y是按照默认方式安装,不加也可以。
验证是否安装成功
验证nodejs版本号
node -v
验证npm版本号
npm -v
有数据输出就是正确安装了
更新npm
首先安装n工具
npm install -g n
更换npm的源为淘宝的源,npm默认用国外的源,下载很慢,网速不好时根本没法下载。
npm config set registry https://registry.npm.taobao.org
更新npm,用的是nodejs14的可以不用更新,因为最新版需要nodejs18~20。
sudo npm install npm -g
意外情况解决
如果nodejs14更新了npm,在查看版本时就会一直报错。
npm WARN notsup Unsupported engine for npm@10.2.5: wanted: {"node":"^18.17.0 || >=20.5.0"} (current: {"node":"14.21.3","npm":"6.14.18"})
这个时候可以更新nodejs到20。
sudo n stable
安装vue脚手架
npm install -g vue-cli
这里安装的是vue2的脚手架。
安装的时候可能进度条会停住,这时需要按回车键。所以安装的时候要看着点。
验证是否安装成功
vue --version
有版本号出现即是安装成功。
创建项目
到你希望保存项目的文件夹。
输入创建vue项目框架的命令。
vue init webpack <ProjectName>
ProjectName就是项目名称,不能有大写字母!!!
然后一路回车,项目就创建好了。
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 零经验选手,Compose 一天开发一款小游戏!
· 通过 API 将Deepseek响应流式内容输出到前端
· 因为Apifox不支持离线,我果断选择了Apipost!