UNPKG

package-size

Version:

Get real size of an npm package after bundled.

10 lines (8 loc) 235 B
const execa = require('execa') module.exports = function(deps, registry, opts) { const args = ['install', '--save'].concat(deps) if (registry) { args.push('--registry', registry) } return execa.stdout('npm', args, opts) }