
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Simple module to wait for a key be pressed to continue, like the "pause" command in windows command prompt.
Simple module to wait for a key be pressed to continue, like the "pause" command in windows command prompt.
npm install --save node-pause
or
yarn add node-pause
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
Simple module to wait for a key be pressed to continue, like the "pause" command in windows command prompt.
We found that node-pause demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.