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

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRebecca Turner <turner@mikomi.org>2014-09-30 00:11:02 +0400
committerRebecca Turner <me@re-becca.org>2015-06-26 03:26:36 +0300
commit9ada7beefc1e1b166395494cd242398424451e55 (patch)
treeb9b0de33d13112350310b2fb9805ffe8e0ce2017 /node_modules/debuglog
parent7e5da238ee869201fdb9027c27b79b0f76b440a8 (diff)
read-package-tree@4.1.0
Diffstat (limited to 'node_modules/debuglog')
-rw-r--r--node_modules/debuglog/LICENSE19
-rw-r--r--node_modules/debuglog/README.md40
-rw-r--r--node_modules/debuglog/debuglog.js22
-rw-r--r--node_modules/debuglog/package.json46
4 files changed, 127 insertions, 0 deletions
diff --git a/node_modules/debuglog/LICENSE b/node_modules/debuglog/LICENSE
new file mode 100644
index 000000000..a3187cc10
--- /dev/null
+++ b/node_modules/debuglog/LICENSE
@@ -0,0 +1,19 @@
+Copyright Joyent, Inc. and other Node contributors. All rights reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to
+deal in the Software without restriction, including without limitation the
+rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+sell copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+IN THE SOFTWARE.
diff --git a/node_modules/debuglog/README.md b/node_modules/debuglog/README.md
new file mode 100644
index 000000000..dc6fccecc
--- /dev/null
+++ b/node_modules/debuglog/README.md
@@ -0,0 +1,40 @@
+# debuglog - backport of util.debuglog() from node v0.11
+
+To facilitate using the `util.debuglog()` function that will be available when
+node v0.12 is released now, this is a copy extracted from the source.
+
+## require('debuglog')
+
+Return `util.debuglog`, if it exists, otherwise it will return an internal copy
+of the implementation from node v0.11.
+
+## debuglog(section)
+
+* `section` {String} The section of the program to be debugged
+* Returns: {Function} The logging function
+
+This is used to create a function which conditionally writes to stderr
+based on the existence of a `NODE_DEBUG` environment variable. If the
+`section` name appears in that environment variable, then the returned
+function will be similar to `console.error()`. If not, then the
+returned function is a no-op.
+
+For example:
+
+```javascript
+var debuglog = util.debuglog('foo');
+
+var bar = 123;
+debuglog('hello from foo [%d]', bar);
+```
+
+If this program is run with `NODE_DEBUG=foo` in the environment, then
+it will output something like:
+
+ FOO 3245: hello from foo [123]
+
+where `3245` is the process id. If it is not run with that
+environment variable set, then it will not print anything.
+
+You may separate multiple `NODE_DEBUG` environment variables with a
+comma. For example, `NODE_DEBUG=fs,net,tls`.
diff --git a/node_modules/debuglog/debuglog.js b/node_modules/debuglog/debuglog.js
new file mode 100644
index 000000000..748fd72a1
--- /dev/null
+++ b/node_modules/debuglog/debuglog.js
@@ -0,0 +1,22 @@
+var util = require('util');
+
+module.exports = (util && util.debuglog) || debuglog;
+
+var debugs = {};
+var debugEnviron = process.env.NODE_DEBUG || '';
+
+function debuglog(set) {
+ set = set.toUpperCase();
+ if (!debugs[set]) {
+ if (new RegExp('\\b' + set + '\\b', 'i').test(debugEnviron)) {
+ var pid = process.pid;
+ debugs[set] = function() {
+ var msg = util.format.apply(exports, arguments);
+ console.error('%s %d: %s', set, pid, msg);
+ };
+ } else {
+ debugs[set] = function() {};
+ }
+ }
+ return debugs[set];
+};
diff --git a/node_modules/debuglog/package.json b/node_modules/debuglog/package.json
new file mode 100644
index 000000000..b192d407f
--- /dev/null
+++ b/node_modules/debuglog/package.json
@@ -0,0 +1,46 @@
+{
+ "name": "debuglog",
+ "version": "1.0.1",
+ "description": "backport of util.debuglog from node v0.11",
+ "license": "MIT",
+ "main": "debuglog.js",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/sam-github/node-debuglog.git"
+ },
+ "author": {
+ "name": "Sam Roberts",
+ "email": "sam@strongloop.com"
+ },
+ "engines": {
+ "node": "*"
+ },
+ "browser": {
+ "util": false
+ },
+ "bugs": {
+ "url": "https://github.com/sam-github/node-debuglog/issues"
+ },
+ "homepage": "https://github.com/sam-github/node-debuglog",
+ "_id": "debuglog@1.0.1",
+ "dist": {
+ "shasum": "aa24ffb9ac3df9a2351837cfb2d279360cd78492",
+ "tarball": "http://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz"
+ },
+ "_from": "debuglog@1.0.1",
+ "_npmVersion": "1.4.3",
+ "_npmUser": {
+ "name": "octet",
+ "email": "sam@strongloop.com"
+ },
+ "maintainers": [
+ {
+ "name": "octet",
+ "email": "sam@strongloop.com"
+ }
+ ],
+ "directories": {},
+ "_shasum": "aa24ffb9ac3df9a2351837cfb2d279360cd78492",
+ "_resolved": "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz",
+ "readme": "ERROR: No README data found!"
+}