mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
533 B
20 lines
533 B
8 years ago
|
module.exports = send
|
||
|
|
||
|
var assert = require('assert')
|
||
|
var url = require('url')
|
||
|
|
||
|
function send (registryUrl, params, cb) {
|
||
|
assert(typeof registryUrl === 'string', 'must pass registry URI')
|
||
|
assert(params && typeof params === 'object', 'must pass params')
|
||
|
assert(typeof cb === 'function', 'must pass callback')
|
||
|
|
||
|
var uri = url.resolve(registryUrl, '-/npm/anon-metrics/v1/' +
|
||
|
encodeURIComponent(params.metricId))
|
||
|
|
||
|
this.request(uri, {
|
||
|
method: 'PUT',
|
||
|
body: JSON.stringify(params.metrics),
|
||
|
authed: false
|
||
|
}, cb)
|
||
|
}
|