当前位置:网站首页>npm npm
npm npm
2022-08-01 23:07:00 【God is proud of me 1】
why
JavaScript project package management tool
cnpm tarn similar products
Initial Project
npm init
Initialize the project and create a package.json file
npm init -y
Quickly initialize the project (all options are yes)
Directory Explanation
package.json
Project package management file
package-lock.json
Download cache address
node_modules
Installation package download location
Installation can be abbreviated as i --save-dev abbreviated as -D --save abbreviated as -S
Global installation
npm i jquery -g
Local installation
npm i jquery
One-time installation of multiple
npm i jquery vue
Install development dependencies
npm i axios --save-D
Install runtime dependencies
npm i jquery –S
Install the module to the specified version
npm i jquery @version number
Uninstall
Uninstall jquery
npm uninstall jquery
Alias (shorthand) uninstall ->remove->r
Update
update jquery
npm update jquery
alias update -> up
边栏推荐
- ROS2初级知识(8):Launching启动多节点
- 从0到100:招生报名小程序开发笔记
- 浅析多服务在分布式系统下多事务通信处理机制方案
- JS prototype hasOwnProperty in 加方法 原型终点 继承 重写父类方法
- 下载安装 vscode(含汉化、插件的推荐和安装)
- 论文解读(GSAT)《Interpretable and Generalizable Graph Learning via Stochastic Attention Mechanism》
- ping no reply
- excel split text into different rows
- A. Doremy‘s IQ-- Codeforces Round #808 (Div. 1)
- qt-faststart 安装使用
猜你喜欢
随机推荐
visual studio code multiple editing
Wechat Gymnasium Appointment Mini Program Graduation Design Finished Work (4) Opening Report
域名重定向工具 —— SwitchHosts 实用教程
联邦学习在金融领域的发展和应用
13、学习MySQL 分组
TCP 可靠吗?为什么?
APP专项测试:流量测试
Small application project works WeChat stadium booking applet graduation design of the finished product (1) the development profile
毕业作业
从0到100:招生报名小程序开发笔记
华为无线设备配置全局双链路冷备份(AC全局配置方式)
如何给 UE4 场景添加游戏角色
PAM 回文自动机
系统可用性:SRE口中的3个9,4个9...到底是个什么东西?
img 响应式图片的实现(含srcset属性、sizes属性的使用方法,设备像素比详解)
Ten years after graduation, financial freedom: those things that are more important than hard work, no one will ever teach you
SQL Server(设计数据库--存储过程--触发器)
(Translation) How the contrasting color of the button guides the user's actions
计算两点之间的中点
华为无线设备配置双链路冷备份(AP指定配置方式)









