I needed to download a website, Ctrl+S sucked, so I built this

Published: (March 8, 2026 at 12:37 AM EST)
1 min read
Source: Dev.to

Source: Dev.to

Overview

BAM! downsrc is a simple & customizable npm package that lets you download full websites or specific resources of them.

Strength: Visual and easy to use.
Weakness: Some websites can block the fetcher system, preventing download (work in progress).

Usage

downsrc https://example.com
downsrc https://example.com --of "jpeg & svg"
downsrc https://example.com --as 5

(my marketing skills are in development lol)

downsrc screenshot

0 views
Back to Blog

Related posts

Read more »

Difference between global & globalThis

Overview global and globalThis both refer to JavaScript's global object, but they differ in scope and compatibility across environments. - global – Node.js‑spe...