我使用“npm install npmtest”命令下载我的测试私有包。但是我的项目目录中没有下载包。之后,我使用“npm install jquery”下载jquery插件,但插件也只下载到verdaccio的存储中,我的项目目录中没有jquery插件。
verdaccio 配置文件
storage: ./storage
plugins: ./plugins
web:
title: Verdaccio
auth:
htpasswd:
file: ./htpasswd
uplinks:
cnpmjs:
url: https://registry.npm.taobao.org/
packages:
'@*/*':
# scoped packages
access: $all
publish: $authenticated
proxy: cnpmjs
'**':
access: $all
publish: $authenticated
proxy: cnpmjs
middlewares:
audit:
enabled: true
logs:
- {type: stdout, format: pretty, level: http}
执行 npm install 后的信息
test2 目录仍然是空的。谁能告诉我这是为什么?谢谢你。