Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

prompt-text

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prompt-text

Basic text input prompt. This can be used standalone, but it's also included in [enquirer] by default.

  • 1.0.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

prompt-text NPM version NPM monthly downloads NPM total downloads Linux Build Status

Basic text input prompt. This can be used standalone, but it's also included in enquirer by default.

prompt-text example

Install

Install with npm:

$ npm install --save prompt-text

Usage

var Text = require('prompt-text');
var text = new Text({
  name: 'first',
  message: 'What is your name?'
});

// async
text.ask(function(answers) {
  console.log(answers);
});

// promise
text.run()
  .then(function(answers) {
    console.log(answers);
  });

Enquirer usage

There is no need to register this with enquirer, as this is the only prompt type included in enquirer by default.

Attribution

Based on the input prompt in inquirer.

About

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Running tests

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

$ npm install && npm test

Author

Jon Schlinkert

License

Copyright © 2017, Jon Schlinkert. Released under the MIT License.


This file was generated by verb-generate-readme, v0.6.0, on June 02, 2017.

Keywords

FAQs

Package last updated on 02 Jun 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc