Socket
Socket
Sign inDemoInstall

read

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

read

read(1) for node programs


Version published
Weekly downloads
4.8M
increased by2.04%
Maintainers
1
Weekly downloads
 
Created

What is read?

The 'read' npm package is a simple utility for reading user input from the command line. It is often used to prompt users for information in a synchronous manner, making it useful for command-line applications and scripts.

What are read's main functionalities?

Basic User Input

This feature allows you to prompt the user for input and handle the response. The example code asks the user for their name and then prints a greeting.

const read = require('read');

const options = {
  prompt: 'What is your name? '
};

read(options, function(err, result) {
  if (err) {
    console.error('Error:', err);
  } else {
    console.log('Hello, ' + result + '!');
  }
});

Password Input

This feature allows you to prompt the user for sensitive information like passwords without displaying the input on the screen. The example code asks the user for a password and confirms receipt without showing the password.

const read = require('read');

const options = {
  prompt: 'Enter your password: ',
  silent: true
};

read(options, function(err, result) {
  if (err) {
    console.error('Error:', err);
  } else {
    console.log('Password received.');
  }
});

Default Values

This feature allows you to provide a default value for the user input. The example code asks the user for their favorite color and defaults to 'blue' if no input is provided.

const read = require('read');

const options = {
  prompt: 'What is your favorite color? ',
  default: 'blue'
};

read(options, function(err, result) {
  if (err) {
    console.error('Error:', err);
  } else {
    console.log('Your favorite color is ' + result + '.');
  }
});

Other packages similar to read

FAQs

Package last updated on 12 Aug 2012

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