
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.
Pause & resume windows processes with Node
A node wrapper for PsSuspend
ATTENTION: By running this module you'll be be programmatically accepting the EULA of PsSuspend. Please be sure to read the Eula here before proceeding.
Client: Windows Vista and higher.
Server: Windows Server 2008 and higher.
Install WinPause via NPM:
npm i win-pause
If you already have PsSuspend on the machine:
import { pause, resume } from 'win-pause';
const binPath = 'my-path/pssuspend.exe';
const pid = 9020;
pause(pid, binPath)
.then(() => console.log('successfully paused!'));
resume(pid, binPath)
.then(() => console.log('successfully resumed!'));
Otherwise:
import { pause, resume, downloadPsSuspend } from 'win-pause';
const pid = 9020;
downloadPsSuspend()
.then(() => {
pause(pid)
.then(() => console.log('successfully paused!'));
resume(pid)
.then(() => console.log('successfully resumed!'));
})
npm test
FAQs
Pause & resume windows processes with Node
The npm package win-pause receives a total of 1 weekly downloads. As such, win-pause popularity was classified as not popular.
We found that win-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.