AdSense

網頁

2019/5/21

NPM 使用npm install下載jquery套件

在你的專案目錄輸入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.jsondependencies的內容會增加關於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"
  }
}



沒有留言:

AdSense