2.0.4 • Published 7 months ago

whiptail v2.0.4

Weekly downloads
10
License
ISC
Repository
github
Last release
7 months ago

whiptail wrapper for nodejs

Build Status Coverage Status Version License Available platform

Installation

npm install whiptail
# have whiptail binary installed (apt-get install whiptail)

API

const Whiptail = require('whiptail');

var whiptail = new Whiptail(); //some options
(async function(){


  var choices = {
    "abc" : "this is a foo",
    "bar" : "this is a bar",
  };

  await whiptail.msgbox("Are you okay");


  var name = await whiptail.inputbox("Enter your name");
  console.log({name});

  var res = await whiptail.menu("Choose a stuff", choices);
  console.log({res});

  res = await whiptail.checklist("Choose anoter stuff", choices);
  console.log({res});

  res = await whiptail.checklist("Choose the last stuff", choices);
  console.log({res});

})();

Credits

1.7.3

7 months ago

2.0.3

7 months ago

2.0.2

7 months ago

2.0.4

7 months ago

2.0.1

7 months ago

2.0.0

7 months ago

1.7.1

3 years ago

1.7.0

4 years ago

1.6.2

5 years ago

1.6.1

5 years ago

1.5.0

5 years ago

1.4.2

5 years ago

1.4.1

5 years ago

1.4.0

5 years ago

1.3.0

6 years ago

1.2.2

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago