cquestions

1.0.3 • Public • Published

CQuestions

Ask a question in the console and handle the response in your script!

How to use CQuestions

Outside an async function

const question = require("cquestions");

question("How are you? ").then((answer) => console.log(answer));
// Will put the answer in the console once an answer is given

Inside an async function

const question = require("cquestions");

var answer = await question("How are you? ");
console.log(answer);
// Will put the answer in the console once an answer is given

Support

If you need help or if you have any questions, contact me on discord: TWIXGAMER#1372

Package Sidebar

Install

npm i cquestions

Weekly Downloads

1

Version

1.0.3

License

ISC

Unpacked Size

1.33 kB

Total Files

3

Last publish

Collaborators

  • twixgamer00