
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.
node-screencapturer
Advanced tools
Zero-dependent. A native nodejs screenshots library for Mac、Windows、Linux.
Zero-dependent. A native nodejs screenshots library for Mac、Windows、Linux.
| Operating Systems | node12 | node14 | node16 |
|---|---|---|---|
| Windows x64 | ✓ | ✓ | ✓ |
| Windows x32 | ✓ | ✓ | ✓ |
| Windows arm64 | ✓ | ✓ | ✓ |
| macOS x64 | ✓ | ✓ | ✓ |
| macOS arm64 | ✓ | ✓ | ✓ |
| Linux x64 gnu | ✓ | ✓ | ✓ |
| Linux x64 musl | ✓ | ✓ | ✓ |
const fs = require('fs')
const { Screenshots } = require('node-screenshots')
let capturer = Screenshots.fromPoint(100, 100)
console.log(capturer, capturer.id)
// 同步截图
let image = capturer.captureSync()
fs.writeFileSync('./a.png', image)
// 异步获取截图
capturer.capture().then(data => {
console.log(data)
fs.writeFileSync(`${capturer.id}.png`, data)
})
// 获取所有屏幕截图
let all = Screenshots.all()
all.forEach(capturer => {
console.log({
id: capturer.id,
x: capturer.x,
y: capturer.y,
width: capturer.width,
height: capturer.height,
scale: capturer.scale,
rotation: capturer.rotation
})
capturer.captureSync()
})
// 从屏幕id获取截图,id可以通过 `Screenshots.all()` 获取,也可以通过electron的 `screen.getAllDisplays()` 获取
let sc = Screenshots.fromDisplay(71)
Screenshots.fromPoint(x, y): 从指定坐标获取屏幕Screenshots.fromDisplay(displayId): 从屏幕 id 获取屏幕Screenshots.all(): 获取所有屏幕screenshots.capture(): 异步截图screenshots.captureSync(): 同步截图FAQs
Zero-dependent. A native nodejs screenshots library for Mac、Windows、Linux.
We found that node-screencapturer 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.