Socket
Socket
Sign inDemoInstall

npm-registry-client

Package Overview
Dependencies
104
Maintainers
4
Versions
156
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 8.3.0 to 8.4.0

8

lib/request.js

@@ -282,3 +282,9 @@ module.exports = regRequest

w = w.split('/')
name = decodeURIComponent(w[w.indexOf('_rewrite') + 1])
var index = w.indexOf('_rewrite')
if (index === -1) {
index = w.length - 1
} else {
index++
}
name = decodeURIComponent(w[index])
}

@@ -285,0 +291,0 @@

2

package.json

@@ -5,3 +5,3 @@ {

"description": "Client for the npm registry",
"version": "8.3.0",
"version": "8.4.0",
"repository": {

@@ -8,0 +8,0 @@ "url": "https://github.com/npm/npm-registry-client.git"

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc