A package for creating smart CLI interactions with customizable questions and answers.
Go to file
2023-07-13 14:07:13 +02:00
.gitea/workflows fix(core): update 2023-07-13 14:07:12 +02:00
.vscode fix(core): update 2023-07-13 14:07:12 +02:00
test fix(core): update 2023-07-13 14:07:12 +02:00
ts fix(core): update 2023-07-13 14:07:12 +02:00
.gitignore fix(core): update 2020-08-31 19:23:51 +00:00
.gitlab-ci.yml fix(core): update 2020-08-31 19:23:51 +00:00
npmextra.json fix(core): update 2023-07-13 14:07:12 +02:00
package.json 2.0.12 2023-07-13 14:07:13 +02:00
pnpm-lock.yaml fix(core): update 2023-07-13 14:07:12 +02:00
readme.md fix(core): update 2023-07-13 14:07:12 +02:00
tsconfig.json fix(core): update 2023-07-13 14:07:12 +02:00

@push.rocks/smartinteract

smart cli interaction

Status for master

Status Category Status Badge
GitLab Pipelines pipeline status
GitLab Pipline Test Coverage coverage report
npm npm downloads per month
Snyk Known Vulnerabilities
TypeScript Support TypeScript
node Support node
Code Style Code Style
PackagePhobia (total standalone install weight) PackagePhobia
PackagePhobia (package size on registry) PackagePhobia
BundlePhobia (total size when bundled) BundlePhobia

Usage

Use TypeScript for best in class instellisense.

import { SmartInteract } from 'smartinteract'

let myInteract = new SmartInteract([{ // note: its an array. You can specify multiple questions
    name: 'question1',
    type: 'input',
    message: 'Who are you?',
    default: 'Somebody',
    validate: (inputString) => { return true } // implement your own validation
}])
myInteract.addQuestions([ ... ]) // add more questions
myInteract.runQueue()
    .then(answerBucket => { // the bucket has all the answers of the completed queue
        let answerQuestion1 = answerBucket.getAnswerFor('question1')
        // do something with the answers
    })

// alternatively use .askQuestion() for more direct control
myInteract.askQuestion{ // note: its an array. You can specify multiple questions
    name: 'question2',
    type: 'confirm',
    message: 'Do you speak English?',
    default: true,
    validate: (inputString) => { return true } // implement your own validation
}().then(answerObject => {
    // answerObject looks like { name: 'question2', value: true }
})

Contribution

We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can contribute one time or contribute monthly. :)

For further information read the linked docs at the top of this readme.

MIT licensed | © Task Venture Capital GmbH | By using this npm module you agree to our privacy policy