
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.
@0biwank/screen-capture
Advanced tools
Native screen capture addon for Node.js with HLS muxing support
Native screen capture addon for Node.js with HLS muxing support for macOS.
npm install @0biwank/screen-capture
const screenCapture = require('@0biwank/screen-capture');
// List available display sources
const displays = screenCapture.listDisplaySources();
console.log('Available displays:', displays);
// List available window sources
const windows = screenCapture.listWindowSources();
console.log('Available windows:', windows);
// Select a source (display or window)
const sourceId = displays[0].id; // or windows[0].id
screenCapture.selectSource(sourceId);
// Start capturing
screenCapture.startCapture();
// Process media stream (with HLS muxing)
screenCapture.processMediaStream();
// Stop capturing
screenCapture.stopCapture();
listDisplaySources()Returns an array of available display sources.
Returns: Array<{id: string, name: string}>
listWindowSources()Returns an array of available window sources.
Returns: Array<{id: string, name: string}>
selectSource(sourceId)Selects a source (display or window) for capture.
Parameters:
sourceId (string): The ID of the source to captureReturns: boolean
startCapture()Starts the screen capture.
Returns: boolean
processMediaStream()Processes the captured media stream with HLS muxing.
Returns: boolean
stopCapture()Stops the screen capture.
Returns: boolean
MIT
FAQs
Native screen capture addon for Node.js with HLS muxing support
We found that @0biwank/screen-capture demonstrated a healthy version release cadence and project activity because the last version was released less than 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.