I used "npm install npmtest" command to download my test private package. But there was no package downloaded in my project directory. After that, I used "npm install jquery" to download jquery plugin, but the plugin was only downloaded to verdaccio's storage too, there was not jquery plugin in my project directory.
verdaccio config file
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}
Info after executing npm install
The test2 directory was still empty. Can anyone tell me why is that? Thank you.