配置相关
查看 npm 配置列表
npm config list
安装 module 到指定目录下
npm install --prefix [目录名字] [module]
F:\Github\serverless-demo\test-mysql>tree
文件夹 PATH 列表
卷序列号为 0C01-1963
F:.
├─db
├─src
└─vpc
F:\Github\serverless-demo\test-mysql>npm insatll --prefix src mysql2
Unknown command: "insatll"
Did you mean this?
npm install
To see a list of supported npm commands, run:
npm help
F:\Github\serverless-demo\test-mysql>npm install --prefix src mysql2
added 15 packages, and audited 16 packages in 4s
found 0 vulnerabilities
F:\Github\serverless-demo\test-mysql>tree
文件夹 PATH 列表
卷序列号为 0C01-1963
F:.
├─db
├─src
│ └─node_modules
│ ├─denque
│ ├─generate-function
│ ├─iconv-lite
│ │ ├─.github
│ │ ├─.idea
│ │ │ ├─codeStyles
│ │ │ └─inspectionProfiles
│ │ ├─encodings
│ │ │ └─tables
│ │ └─lib
│ ├─is-property
│ ├─long
│ │ ├─dist
│ │ └─src
│ ├─lru-cache
│ ├─mysql2
│ │ ├─lib
│ │ │ ├─auth_plugins
│ │ │ ├─commands
│ │ │ ├─constants
│ │ │ ├─packets
│ │ │ └─parsers
│ │ └─typings
│ │ └─mysql
│ │ └─lib
│ │ └─protocol
│ │ ├─packets
│ │ └─sequences
│ ├─named-placeholders
│ │ └─node_modules
│ │ ├─lru-cache
│ │ └─yallist
│ ├─pseudomap
│ │ └─test
│ ├─safer-buffer
│ ├─seq-queue
│ │ ├─lib
│ │ └─test
│ ├─sqlstring
│ │ └─lib
│ └─yallist
└─vpc
F:\Github\serverless-demo\test-mysql>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74