-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli.mjs
61 lines (53 loc) · 1.39 KB
/
cli.mjs
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
#!/usr/bin/env node
import { parseArgs } from 'node:util'
import process from 'node:process'
import pkg from './package.json' with { type: 'json' }
// https://nodejs.org/api/util.html#utilparseargsconfig
const { values, positionals } = parseArgs({
options: {
help: {
type: 'boolean',
multiple: false,
short: 'h',
default: false,
},
lhs: {
type: 'string',
short: 'a',
default: '0',
},
rhs: {
type: 'string',
short: 'b',
default: '0',
},
},
strict: true,
allowPositionals: true,
})
if (positionals.length < 1 || values.help) {
help()
}
const command = positionals[0]
switch (command) {
case 'help':
help()
break
case 'add':
const { lhs, rhs } = values
const sum = Number.parseFloat(lhs) + Number.parseFloat(rhs)
console.log('%s + %s = %s', lhs, rhs, sum)
break
default:
process.stderr.write(`Unknown command ${command}\n`)
process.exit(1)
}
function help() {
process.stdout.write(`\x1b[32m${pkg.name}\x1b[0m v${pkg.version}
A nodejs template in pure javascript
\x1b[1mUsage:\x1b[0m
cli-name add --lhs [number] --rhs [number] Get sum of lhs and rhs
cli-name help Show this help
`)
process.exit(1)
}