summaryrefslogtreecommitdiff
path: root/deps/npm/lib/utils/metrics-launch.js
blob: 821f8bc7e4fde3e95d175ac61e7b5df84943930b (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
'use strict'
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)
}