UNPKG
cli-learning-in-nodejs
Version:
latest (1.0.1)
1.0.1
1.0.0
github.com/MCgabi/cli-learning
MCgabi/cli-learning
cli-learning-in-nodejs
/
index.js
11 lines
(9 loc)
•
243 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env node
const
welcome =
require
(
"./src/welcome"
);
const
questions =
require
(
"./src/questions"
);
const
shell =
require
(
"./src/shell"
);
const
run
=
async
(
) => {
welcome
(
"CLI"
);
shell
(
await
questions
()); };
run
();