-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
executable file
·86 lines (72 loc) · 1.97 KB
/
index.js
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/usr/bin/env node
const registries = require('npm-mirrors')
const padEnd = require('string.prototype.padend')
const exec = require('child_process').exec
const args = require('minimist')(process.argv.slice(2))
const subCommand = args._[0] || ''
const commandArgs = args._.slice(1) || []
args.h && process.exit(help())
args.v && process.exit(version())
args.version && process.exit(version())
switch (subCommand) {
case 'ls':
list()
break
case 'use':
use(commandArgs[0])
break
default:
help()
}
function list () {
const cmd = 'npm config get registry'
exec(cmd, (error, stdout, stderr) => {
if (error) {
return console.error(`'${cmd}' error: ${error}`)
}
Object.keys(registries).map(k => {
const reg = registries[k].registry
const currentTag = reg === stdout.trim() ? ' * ' : ' '
const lineOutput = currentTag + `${padEnd(k, 10)} ${reg}`
process.stdout.write('\n' + lineOutput)
})
process.stdout.write('\n\n')
if (stderr) {
process.exit(stderr)
}
})
}
function use (registryAlias) {
const registry = registries[registryAlias]
if (!registry) {
console.log(`\n Unknown registry alias: ${registryAlias}\n`)
process.exit(1)
} else {
const cmd = `npm config set registry ${registry.registry}`
exec(cmd, (error, stdout, stderr) => {
if (error) {
console.error(`'${cmd}' error: ${error}`)
process.exit(2)
} else {
console.log(`\n Registry has been set to: ${registry.registry}\n`)
}
})
}
}
function help () {
console.log(`
Usage: nrm [command]
Commands:
ls List all available registries
use <registry> Change npm registry to <registry>
help Print this help
Options:
-h, --help output usage information
-v, --version output the version number
`)
return 0
}
function version () {
console.log('v' + require('./package.json').version)
return 0
}