在你的專案目錄輸入npm install <package name>
便會將指定的套件(package)下載至node_modules
目錄中。
例如我在D:\mynode\demo
執行了npm install jquery
指令後,NPM便會從NPM Registry下載jquery套件至執行時所在目錄下的node_modules
目錄中,也就是D:\mynode\demo\node_module
。
D:\mynode\demo>npm install jquery
npm notice created a lockfile as package-lock.json. You should commit this file.
npm WARN demo@1.0.0 No description
npm WARN demo@1.0.0 No repository field.
+ jquery@3.4.1
added 1 package from 1 contributor and audited 1 package in 1.123s
found 0 vulnerabilities
D:\mynode\demo>
在node_modules
裡面的jquery
資料夾即為下載回來的jquery套件,在dist
資料夾即可找到jquery.js
如果之前你有在專案目錄執行npm init
建立專案的package.json
,因為剛剛執行了下載jquery的命令,所以package.json
的dependencies
的內容會增加關於jquery套件版本依賴的敘述。
{
"name": "demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"jquery": "^3.4.1"
}
}
沒有留言:
張貼留言