Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « npm-registry-client « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 801d00f8e9f949af9c6f8439e63125e21679fe74 (plain)
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
// utilities for working with the js-registry site.

module.exports = RegClient

var join = require("path").join
  , fs = require("graceful-fs")

var npmlog
try {
  npmlog = require("npmlog")
}
catch (er) {
  npmlog = {
    error   : noop,
    warn    : noop,
    info    : noop,
    verbose : noop,
    silly   : noop,
    http    : noop,
    pause   : noop,
    resume  : noop
  }
}

function noop () {}

function RegClient (config) {
  this.config = Object.create(config || {})

  this.config.proxy = this.config.proxy || {}
  if (!this.config.proxy.https && this.config.proxy.http) {
    this.config.proxy.https = this.config.proxy.http
  }

  this.config.ssl = this.config.ssl || {}
  if (this.config.ssl.strict === undefined) this.config.ssl.strict = true

  this.config.retry = this.config.retry || {}
  if (typeof this.config.retry.retries !== "number") this.config.retry.retries = 2
  if (typeof this.config.retry.factor !== "number") this.config.retry.factor = 10
  if (typeof this.config.retry.minTimeout !== "number") this.config.retry.minTimeout = 10000
  if (typeof this.config.retry.maxTimeout !== "number") this.config.retry.maxTimeout = 60000

  this.config.userAgent = this.config.userAgent || "node/" + process.version
  this.config.defaultTag = this.config.defaultTag || "latest"

  this.log = this.config.log || npmlog
  delete this.config.log
}

fs.readdirSync(join(__dirname, "lib")).forEach(function (f) {
  if (!f.match(/\.js$/)) return
  var name = f.replace(/\.js$/, "")
              .replace(/-([a-z])/, function (_, l) { return l.toUpperCase() })
  RegClient.prototype[name] = require(join(__dirname, "lib", f))
})