Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

npm-registry-couchapp

Package Overview
Dependencies
Maintainers
5
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

npm-registry-couchapp - npm Package Compare versions

Comparing version 2.6.12 to 2.6.13

2

package.json
{
"name": "npm-registry-couchapp",
"version": "2.6.12",
"version": "2.6.13",
"description": "The CouchApp implementation of an npm registry",

@@ -5,0 +5,0 @@ "scripts": {

@@ -5,2 +5,16 @@ # npm-registry-couchapp

__deprecation notice: as npm has scaled, the registry architecture has gradually migrated towards
a complex distributed architecture, of which npm-registry-couchapp is only a small part. FOSS
is an important part of npm, and over time we plan on exposing more APIs, and [better documenting
the existing API](https://github.com/npm/public-api).__
__npm-registry-couchapp is still a core part of our functionality, but all new registry features are
now added to the micro-services that now make up npm. For this reason, we will not be accepting any
pull requests, or making any changes to this codebase going forward.__
__For issues with the npmjs.com website, please open an issue on the
[npm/www](https://github.com/npm/www) repo. For issues wih the registry
service (for example, slow package downloads, or inability to publish a
package), see the [npm/registry](https://github.com/npm/registry) repo.__
The design doc for The npm Registry CouchApp

@@ -7,0 +21,0 @@

@@ -35,3 +35,2 @@ var common = require('./common.js')

},
"_from": ".",
"_npmUser": {

@@ -58,3 +57,2 @@ "name": "user",

},
"_from": ".",
"_npmUser": {

@@ -81,3 +79,2 @@ "name": "user",

},
"_from": ".",
"_npmUser": {

@@ -425,13 +422,17 @@ "name": "other",

], { env: env, cwd: inst })
c.stderr.pipe(process.stderr)
var out = ''
c.stdout.setEncoding('utf8')
c.stdout.on('data', function(d) {
out += d
})
c.on('close', function(code) {
t.notOk(code)
t.similar(out, /(└── )?package@0.2.3/)
rimraf.sync(path.resolve(inst, 'node_modules'))
t.end()
t.is(code, 0)
c = common.npm(['--registry=' + reg, 'ls'], {env: env, cwd: inst})
c.stderr.pipe(process.stderr)
var out = ''
c.stdout.setEncoding('utf8')
c.stdout.on('data', function(d) {
out += d
})
c.on('close', function(code) {
t.notOk(code)
t.similar(out, /package@0.2.3/)
rimraf.sync(path.resolve(inst, 'node_modules'))
t.end()
})
})

@@ -438,0 +439,0 @@ })

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc