当前位置:网站首页>How to install the specified version package with NPM and view the version number
How to install the specified version package with NPM and view the version number
2022-08-02 06:44:00 【m0_67393413】
In the process of Vue development, sometimes we need to install the specified version of the package.
For example: install bootstrap version 4.6.1
npm install [email protected]

If the version number is not followed (@4.6.1), then the latest version is installed by default.Different package version numbers may be specified differently!
For example, install without version number by default:
npm install bootstrap

Latest version installed: 5.1.3(2022-04-28)
Sometimes it may be necessary to install an earlier version due to compatibility or testing issues. Record the above method.
View the version numbers of installed packages: list
npm list bootstrap

View Vue version number:
npm list vue

If you install a package back and forth multiple times, it is recommended to uninstall the original package before installation, and then reinstall the new package. Uninstall the command:
npm uninstall bootstrap
Let me introduce myself first. The editor graduated from Shanghai Jiaotong University in 2013. I worked in a small company and went to big factories such as Huawei and OPPO. I joined Alibaba in 2018, until now.I know that most junior and intermediate java engineers want to upgrade their skills, they often need to explore their own growth or sign up to study, but for training institutions, the tuition fee is nearly 10,000 yuan, which is really stressful.Self-learning that is not systematic is very inefficient and lengthy, and it is easy to hit the ceiling and the technology stops.Therefore, I collected a "full set of learning materials for java development" for everyone. The original intention is also very simple. I hope to help friends who want to learn by themselves but don't know where to start, and at the same time reduce everyone's burden.Add the business card below to get a full set of learning materials
边栏推荐
- Not annotated parameter overrides @NonNullApi parameter
- Redis-cluster mode (master-slave replication mode, sentinel mode, clustering mode)
- 目标检测重要概念——IOU、感受野、空洞卷积、mAP
- Shell 脚本不同玩法
- Install and use Google Chrome
- pytorch基本操作:使用神经网络进行分类任务
- Shuttle + Alluxio 加速内存Shuffle起飞
- How to perform concurrent calculation (stability test and stress test)?
- Luogu mini game Daquan (everyone who uses Luogu must know)
- 虚拟现实房产展示系统提前预见未来装修效果
猜你喜欢
随机推荐
The advantages of making web3d dynamic product display
Nacos注册中心的部署与用法详细介绍
VMTK环境配置记录
How to perform concurrent calculation (stability test and stress test)?
[C language] LeetCode26. Delete duplicates in an ordered array && LeetCode88. Merge two ordered arrays
nacos安装配置和单机部署教程
秒杀系统小demo
Meta公司内部项目-RaptorX:将Presto性能提升10倍
51单片机外设篇:点阵式LCD
HCIP BGP综合实验 建立对等体、路由反射器、联邦、路由宣告及聚合
【漫画】2021满分程序员行为对照表(最新版)
NPM 安装指定版本包的方法及版本号查看
51单片机外设篇:ADC
C# 编码规范手册
深入剖析成员变量和局部变量的初始化问题
机器学习——支持向量机原理
程序员写PPT的小技巧
如何优化OpenSumi终端性能?
金山云团队分享 | 5000字读懂Presto如何与Alluxio搭配
Contents of encoding-indexes.js file printed with Bluetooth:









