UNPKG

cli-learning-in-nodejs

Version:
11 lines (9 loc) 243 B
#!/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();