[READ-ONLY] Mirror of https://github.com/bombshell-dev/clack. Effortlessly build beautiful command-line apps bomb.sh/docs/clack/basics/getting-started
cli command-line command-line-app node prompt prompts
Something went wrong. Try again.
TypeScript
1234567891011121314import * as p from '@clack/prompts';
async function demo() { p.intro('path start...');
const path = await p.path({ message: 'Read file', });
p.outro('path stop...');}
void demo();