美文网首页精锐纵横培训
3.使用 npm 命令安装模块

3.使用 npm 命令安装模块

作者: 柳暗花明又一匪 | 来源:发表于2017-12-21 16:47 被阅读0次

npm 安装 Node.js 模块语法:

npm install (with no args, in package dir)

创建项目移动到目标项目下 cd E:\work\app\cloudMall
运行命令下载JQuery依赖包

npm install jquery
image.png

会自动下载最新版本的jquery包,到目录的node_modules文件夹里面


image.png

或者指定要安装的jquery版本

npm install -g jquery@1.6.3

移除jquery包

npm install -g jquery@1.6.3

相关文章

网友评论

    本文标题:3.使用 npm 命令安装模块

    本文链接:https://www.haomeiwen.com/subject/azmgwxtx.html