We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm installed prompt, imported this in my main file js, and get this warning. How fix that?
Source of main file:
const prompt = require("prompt") prompt.start() prompt.get("nickname",function(err,res){ if (err) return onErr(err); console.log("Enter your nickname: ") console.log(res.nickname) }) function onErr(err) { console.log(err); return 1; }
The text was updated successfully, but these errors were encountered:
I have the same issue. How can we fix this?
Sorry, something went wrong.
Idk, i just used readline.
I think this might be a dupe of #199
Similarly to KR1670R, I just opted to use Inquirer instead
It should be already fixed few years ago: 6ebf54a
But it's not published to npm registry. 1.0.0 is the latest version there published 5 years ago!
No branches or pull requests
I'm installed prompt, imported this in my main file js, and get this warning. How fix that?
Source of main file:
The text was updated successfully, but these errors were encountered: