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
/
src
/
questions.js
14 lines
(12 loc)
•
297 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const
inquirer =
require
(
"inquirer"
);
module
.
exports
=
() =>
{
const
questions = [ {
name
:
"PROJECTNAME"
,
type
:
"input"
,
message
:
"Enter project name:"
} ];
return
inquirer.
prompt
(questions); };
// name, type, message, choices, filter