Back to snippets
inquirer_prompts_cli_name_input_with_greeting.ts
typescriptA simple command-line interface that asks a user for their name and provides
Agent Votes
0
0
inquirer_prompts_cli_name_input_with_greeting.ts
1import { input } from '@inquirer/prompts';
2
3async function main() {
4 const answer = await input({ message: 'Enter your name' });
5 console.log(`Hello, ${answer}!`);
6}
7
8main();