New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

node-pause

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-pause

Simple module to wait for a key be pressed to continue, like the "pause" command in windows command prompt.

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

Node Pause

Simple module to wait for a key be pressed to continue, like the "pause" command in windows command prompt.

Installation

npm install --save node-pause

or

yarn add node-pause

Usage

const pause = require('node-pause');

The pause function recieves an optional parameter with the message that will be displayed, this function returns a promisse that will be called when any key is pressed returning the key character.

const pause = require('node-pause');

console.log('My special message :D');

pause('Press any key to continue.... :X')
    .then(() => {
        console.log('\n\nAnother special message');
        return pause('Press any key to exit');
    })
    .then(key => {
        console.log(`\n\nYou pressed "${key}" and the process will exit`);
        
        process.exit();
    });

FAQs

Package last updated on 22 Feb 2018

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