Skip to content

Instantly share code, notes, and snippets.

@kuanyui
Created December 15, 2022 12:04
Show Gist options
  • Save kuanyui/42c89825d73c2c6101c59fae0eeda251 to your computer and use it in GitHub Desktop.
Save kuanyui/42c89825d73c2c6101c59fae0eeda251 to your computer and use it in GitHub Desktop.
function cliPrompt<T = string>(promptMsg: string): Promise<T> {
return new Promise((resolve, reject) => {
process.stdin.on("data", function(data: any) {
resolve(data.toString())
process.stdin.end()
})
process.stdout.write(promptMsg);
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment