
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.
assets-vault
Advanced tools
Download all assets from any webpage including images, styles, scripts, and more
A powerful Node.js package to download all assets from any webpage, including images, styles, scripts, fonts, and more.
npm install assets-vault
import { WebsiteAssetDownloader } from 'assets-vault';
// Basic usage
const downloader = new WebsiteAssetDownloader('https://example.com', {
outputFolder: 'my-downloads'
});
await downloader.downloadAll();
// Advanced usage with options
const downloader = new WebsiteAssetDownloader('https://example.com', {
outputFolder: 'my-downloads',
maxPages: 50,
delay: 2000,
includeSubdomains: true,
customCategories: {
pdfs: /\.pdf(\?.*)?$/i,
images2x: /@2x\.(jpg|png)(\?.*)?$/i
}
});
const stats = await downloader.downloadAll();
console.log('Statistics:', stats);
outputFolder (required): Directory where assets will be savedmaxPages (optional): Maximum number of pages to crawl (default: 50)delay (optional): Delay between requests in milliseconds (default: 1000)includeSubdomains (optional): Whether to include subdomains (default: false)customCategories (optional): Custom asset categories with regex patternsMIT
FAQs
Download all assets from any webpage including images, styles, scripts, and more
We found that assets-vault 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.