
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
modern-screenshot
Advanced tools
Quickly generate image from DOM node using HTML5 canvas and SVG
Quickly generate image from DOM node using HTML5 canvas and SVG
Fork from html-to-image
English | 简体中文
npm i modern-screenshot
import { domToPng } from 'modern-screenshot'
domToPng(document.querySelector('#app')).then((dataUrl) => {
const link = document.createElement('a')
link.download = 'screenshot.png'
link.href = dataUrl
link.click()
})
<script src="https://unpkg.com/modern-screenshot"></script>
<script>
modernScreenshot.domToPng(document.querySelector('body')).then(dataUrl => {
const link = document.createElement('a')
link.download = 'screenshot.png'
link.href = dataUrl
link.click()
})
</script>
⚠️ Partial embedding will fail due to CORS
const script = document.createElement('script')
script.src = 'https://unpkg.com/modern-screenshot/dist/index.js'
document.getElementsByTagName('head')[0].appendChild(script)
script.onload = () => {
modernScreenshot
.domToImage(document.querySelector('body'), {
debug: true,
progress: (current, total) => {
console.log(`${current}/${total}`)
}
})
.then((img) => {
const width = 600
const height = img.height * (width / img.width)
console.log('%c ', [
`padding: 0 ${width / 2}px;`,
`line-height: ${height}px;`,
`background-image: url('${img.src}');`,
`background-size: 100% 100%;`,
].join(''))
})
}
method(node: Node, options?: Options)
DOM to dataURL
DOM to data
DOM to HTMLElement
See the options.ts
Quick screenshots per second by reusing context and web worker
import { createContext, destroyContext, domToPng } from 'modern-screenshot'
// use vite
import workerUrl from 'modern-screenshot/worker?url'
async function screenshotsPerSecond() {
const context = await createContext(document.querySelector('#app'), {
workerUrl,
workerNumber: 1,
})
for (let i = 0; i < 10; i++) {
domToPng(context).then((dataUrl) => {
const link = document.createElement('a')
link.download = `screenshot-${i + 1}.png`
link.href = dataUrl
link.click()
if (i + 1 === 10) {
destroyContext(context)
}
})
await new Promise(resolve => setTimeout(resolve, 1000))
}
}
screenshotsPerSecond()
See the context.ts
unable to clone css counters
content: counter(step);
FAQs
Quickly generate image from DOM node using HTML5 canvas and SVG
The npm package modern-screenshot receives a total of 211,558 weekly downloads. As such, modern-screenshot popularity was classified as popular.
We found that modern-screenshot 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.