This package has been deprecated

Author message:

this package has been deprecated

prompt-autocomplete

1.2.0 • Public • Published

prompt-autocomplete

prompt-autocomplete is a Node.js module that provides a terminal prompt with autocomplete-like functionality.

Usage

var ask = require('prompt-autocomplete');
 
var states = [
        'Alabama',
        'Alaska',
        // all the states...
        'Wisconsin',
        'Wyoming'
    ];
 
ask("Pick a state:", states, function (err, answer) {
    console.log("You picked " + answer);
});

gives you this:

Alt text

Contributing & Future of this Module

I built this module for fun and as a challenge for myself. I am not actively using it for anything yet, which means I have little intention on supporting it. That may change of course if I find myself using it for something.

That said, I will take any pull requests for any bug fixes or new features.

Installation

npm install prompt-autocomplete

License

MIT

Package Sidebar

Install

npm i prompt-autocomplete

Weekly Downloads

2

Version

1.2.0

License

MIT

Last publish

Collaborators

  • npm