npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

readline-utils

v2.2.3

Published

Readline utils, for moving the cursor, clearing lines, creating a readline interface, and more.

Downloads

176,866

Readme

readline-utils NPM version NPM monthly downloads NPM total downloads Linux Build Status Windows Build Status

Readline utils, for moving the cursor, clearing lines, creating a readline interface, and more.

Install

Install with npm:

$ npm install --save readline-utils

Usage

var utils = require('readline-utils');

API

.createInterface

Create a readline interface with the given options.

Params

  • options {Object}

.up

Move cursor up by n lines.

Params

  • rl {Readline}: Readline interface
  • n {Number}: Lines up to move. Default is 1.

.down

Move cursor down by n lines.

Params

  • rl {Readline}: Readline interface
  • n {Number}: Lines down to move. Default is 1.

.left

Move cursor left by n colums.

Params

  • rl {Readline}: Readline interface
  • n {Number}: Characters to move left. Default is 1.

.right

Move cursor right by n colums.

Params

  • rl {Readline}: Readline interface
  • n {Number}: Characters to move right. Default is 1.

.move

Move cursor up, down, left or right by 1 line.

Params

  • rl {Readline}: Readline interface

Example

var utils = require('readline-utils');
var rl = utils.createInterface();
rl.input.on('keypress', function(str, key) {
  utils.move(rl, key);
});

.auto

Callback function for the keypress event, to automatically move cursor up, down, left or right by 1 line.

Params

  • rl {Readline}: Readline interface

Example

var utils = require('readline-utils');
var rl = utils.createInterface();
rl.input.on('keypress', utils.auto(rl));

.clearAfter

Clear n lines after the cursor.

Params

  • rl {Readline}: Readline interface
  • n {Number}: Number of lines to clear

.clearScreen

Clear the terminal.

Params

  • rl {Readline}: Readline interface
  • n {Number}: Number of lines to clear

.lastLine

Get the last line from the given str

Params

  • str {String}
  • returns {String}

.height

Get the height (rows) of the given str

Params

  • str {String}
  • returns {Number}

.hideCursor

Hide the cursor so it doesn't show during a prompt. This is useful for multiple-choice or list prompts, or any prompt where the user will not be entering input.

Params

  • rl {Readline}: Readline interface
  • returns {Object}: readline-utils object for chaining

.showCursor

Show the cursor.

Params

  • rl {Readline}: Readline interface
  • returns {Object}: readline-utils object for chaining

.close

Close the interface, remove event listeners, and restore/unmute prompt functionality

Params

  • rl {Readline}: Readline interface
  • returns {Object}: readline-utils object for chaining

.forceClose

Close the interface when the keypress is ^C

Params

  • rl {Readline}: Readline interface
  • returns {Object}: readline-utils object for chaining

.eraseLines

Erase n lines

Params

  • n {Number}
  • returns {String}: Returns the unicode to erase lines

Example

utils.eraseLines(3);

.clearTrailingLines

Remove lines from the bottom of the terminal.

Params

  • rl {Number}: Readline interface
  • lines {Number}: Number of lines to remove
  • height {Number}: Content height
  • returns {Object}: Returns the readline-utils object for chaining

.cursorPosition

Remember the cursor position

  • returns {Object}: readline-utils object

.restoreCursorPos

Restore the cursor position to where it has been previously stored.

  • returns {Object}: readline-utils object

.cliWidth

Get the width of the terminal

  • returns {Number}: Returns the number of columns.

.breakLines

Break lines longer than the cli width so we can normalize the natural line returns behavior accross terminals. (I don't see how this can work consistently. It seems brittle and will probably be replaced with https://github.com/jonschlinkert/word-wrap)

Params

  • lines {Array}: Array of lines
  • width {Number}: Terminal width

.forceLineReturn

Joins the lines returned from .breakLines.

Params

  • lines {Array|String}: String or array of lines.
  • width {Number}: Terminal width
  • returns {String}

.normalizeLF

Ensure the given str ends in a newline.

Params

  • str {String}: The input string
  • returns {String}

Example

console.log(utils.normalizeLF('foo'));
//=> 'foo\n'

.keypress

This module offers the internal "keypress" functionality from node-core's readline module, for your own programs and modules to use.

The keypress function accepts a readable Stream instance and makes it emit "keypress" events. Usage:

Params

  • {Stream}: stream

Example

require('keypress')(process.stdin);

process.stdin.on('keypress', function(ch, key) {
  console.log(ch, key);
  if (key.ctrl && key.name === 'c') {
    process.stdin.pause();
  }
});
proces.stdin.resume();

.enableMouse

Enables "mousepress" events on the input stream. Note that stream must be an output stream (i.e. a Writable Stream instance), usually process.stdout.

Params

  • {Stream}: stream writable stream instance

.disableMouse

Disables "mousepress" events from being sent to the input

stream. Note that stream must be an output stream (i.e. a Writable Stream instance), usually process.stdout.

Params

  • {Stream}: stream writable stream instance

Attribution

Some of this code was initially borrowed from [Inquirer][].

About

Related projects

Contributing

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

Please read the contributing guide for advice on opening issues, pull requests, and coding standards.

Contributors

| Commits | Contributor | | --- | --- | | 41 | jonschlinkert | | 7 | doowb |

Building docs

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb

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 May 21, 2017.