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

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/npm-registry-client/index.js')
-rw-r--r--deps/npm/node_modules/npm-registry-client/index.js65
1 files changed, 65 insertions, 0 deletions
diff --git a/deps/npm/node_modules/npm-registry-client/index.js b/deps/npm/node_modules/npm-registry-client/index.js
new file mode 100644
index 00000000000..00107c6bd5c
--- /dev/null
+++ b/deps/npm/node_modules/npm-registry-client/index.js
@@ -0,0 +1,65 @@
+
+// utilities for working with the js-registry site.
+
+module.exports = RegClient
+
+var fs = require('fs')
+, url = require('url')
+, path = require('path')
+, npmlog
+
+try {
+ npmlog = require("npmlog")
+} catch (er) {
+ npmlog = { error: noop, warn: noop, info: noop,
+ verbose: noop, silly: noop, http: silly,
+ pause: noop, resume: noop }
+}
+
+function noop () {}
+
+function RegClient (options) {
+ // a registry url must be provided.
+ var registry = url.parse(options.registry)
+ if (!registry.protocol) throw new Error(
+ 'Invalid registry: ' + registry.url)
+ this.registry = registry.href
+
+ this.cache = options.cache
+ if (!this.cache) throw new Error("Cache dir is required")
+
+ this.alwaysAuth = options.alwaysAuth || false
+
+ this.auth = options.auth || null
+ if (this.auth) {
+ var a = new Buffer(this.auth, "base64").toString()
+ a = a.split(":")
+ this.username = a.shift()
+ this.password = a.join(":")
+ }
+ this.email = options.email || null
+ this.defaultTag = options.tag || "latest"
+
+ this.ca = options.ca || null
+
+ this.strictSSL = options.strictSSL
+ if (this.strictSSL === undefined) this.strictSSL = true
+
+ this.userAgent = options.userAgent
+ if (this.userAgent === undefined) {
+ this.userAgent = 'node/' + process.version
+ }
+
+ this.cacheMin = options.cacheMin || 0
+ this.cacheMax = options.cacheMax || Infinity
+
+ this.proxy = options.proxy
+ this.httpsProxy = options.httpsProxy || options.proxy
+
+ this.log = options.log || npmlog
+}
+
+require('fs').readdirSync(__dirname + "/lib").forEach(function (f) {
+ if (!f.match(/\.js$/)) return
+ RegClient.prototype[f.replace(/\.js$/, '')] = require('./lib/' + f)
+})