PATH:
usr
/
local
/
lib
/
node_modules
/
npm
/
lib
/
utils
'use strict' /* eslint-disable camelcase */ module.exports = launchSendMetrics var fs = require('graceful-fs') var child_process = require('child_process') if (require.main === module) main() function launchSendMetrics () { var path = require('path') var npm = require('../npm.js') try { if (!npm.config.get('send-metrics')) return var cliMetrics = path.join(npm.config.get('cache'), 'anonymous-cli-metrics.json') var targetRegistry = npm.config.get('metrics-registry') fs.statSync(cliMetrics) return runInBackground(__filename, [cliMetrics, targetRegistry]) } catch (ex) { // if the metrics file doesn't exist, don't run } } function runInBackground (js, args, opts) { if (!args) args = [] args.unshift(js) if (!opts) opts = {} opts.stdio = 'ignore' opts.detached = true var child = child_process.spawn(process.execPath, args, opts) child.unref() return child } function main () { var sendMetrics = require('./metrics.js').send var metricsFile = process.argv[2] var metricsRegistry = process.argv[3] sendMetrics(metricsFile, metricsRegistry) }
[-] umask.js
[edit]
[-] read-local-package.js
[edit]
[-] completion.sh
[edit]
[-] otplease.js
[edit]
[-] save-stack.js
[edit]
[-] escape-arg.js
[edit]
[-] temp-filename.js
[edit]
[-] lifecycle.js
[edit]
[-] git.js
[edit]
[-] pulse-till-done.js
[edit]
[-] open-url.js
[edit]
[-] usage.js
[edit]
[+]
..
[-] gently-rm.js
[edit]
[-] correct-mkdir.js
[edit]
[-] error-handler.js
[edit]
[-] read-user-info.js
[edit]
[-] ansi-trim.js
[edit]
[-] is-registry.js
[edit]
[-] output.js
[edit]
[-] pick-manifest-from-registry-metadata.js
[edit]
[-] package-id.js
[edit]
[-] metrics-launch.js
[edit]
[-] unix-format-path.js
[edit]
[-] depr-check.js
[edit]
[-] no-progress-while-running.js
[edit]
[-] warn-deprecated.js
[edit]
[-] link.js
[edit]
[-] move.js
[edit]
[-] is-windows.js
[edit]
[-] spawn.js
[edit]
[-] child-path.js
[edit]
[-] unsupported.js
[edit]
[-] metrics.js
[edit]
[-] cache-file.js
[edit]
[-] is-windows-shell.js
[edit]
[-] funding.js
[edit]
[+]
completion
[-] did-you-mean.js
[edit]
[-] lifecycle-cmd.js
[edit]
[-] gunzip-maybe.js
[edit]
[-] error-message.js
[edit]
[-] locker.js
[edit]
[-] parse-json.js
[edit]
[-] perf.js
[edit]
[-] escape-exec-path.js
[edit]
[-] module-name.js
[edit]
[-] is-windows-bash.js
[edit]
[-] deep-sort-object.js
[edit]