
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
screengrab-server
Advanced tools
Take screengrabs of HTML elements or React components on your website
Take screengrabs of HTML elements or React components on your website
Fist log into https://screengrab.cloud and get your API Key from the dashboard
npm install --save screengrab-server
const server = require("screengrab-server")
const PORT = process.env.PORT || 3000
server.listen(PORT, () => {
console.log('Server listening on ', PORT)
})
git clone https://github.com/imageapi-dev/screengrab-server
Install and start the server
npm install # install nodejs dependencies
cp .env.example .env # copy to .env
npm run start # start dev server
screengrab.js
to take screenshotsSee: https://github.com/screengrab-cloud/screengrab.js
Import screengrab.js
into your code and get screenshots from your dev server
import { ScreenGrab } from 'screengrab.js'
const screengrab = ScreenGrab({
server: 'http://localhost:3031'
})
const image = await screengrab.url('https://memezoo.app').grab()
console.log('screengrab url', image.url)
To use the cloud hosted ScreenGrab.cloud
import { ScreenGrab } from 'screengrab.js'
const screengrab = ScreenGrab('api-key')
const image = await screengrab.url('https://memezoo.app').grab()
console.log('screengrab url', image.url)
For detailed information refer to https://docs.screengrab.cloud
FAQs
Take screengrabs of HTML elements or React components on your website
We found that screengrab-server 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.