UNPKG
@s54a/hi
Version:
latest (2.0.10)
2.0.10
2.0.7
2.0.5
2.0.2
2.0.1
2.0.0
1.0.3
1.0.2
1.0.1
1.0.0
Hello world CLI Package which uses Node JS
github.com/s54a/HI-CLI-EXE
s54a/HI-CLI-EXE
@s54a/hi
/
src
/
index.ts
12 lines
(8 loc)
•
193 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env node
const
argv
: string[] = process.
argv
;
const
[, , ...args]: string[] = argv;
if
(args.
length
===
0
) {
console
.
log
(
"hello, how are you?"
); }
else
{
console
.
log
(args); }