# kage **kage** (影, "shadow") clones a website into a self-contained folder you can browse offline, with all the JavaScript stripped out. It renders every page in headless Chrome, snapshots the final rendered DOM, removes every script and event handler, and downloads the CSS, images, and fonts and rewrites them to local paths. The result looks like the live site but runs no code: a plain folder of `.html` files you can open straight from disk. ```bash kage clone example.com kage serve kage-out/example.com ``` ## Why Saving a page with "Save As" gives you a copy that still phones home, still runs analytics, and often renders blank because the markup is built by JavaScript at runtime. kage takes the opposite approach: - **Render first, save second.** Each page goes through real headless Chrome, so a page whose content is assembled by JavaScript is captured the way a human would have seen it, not as an empty shell. - **Strip every script.** Once the DOM is captured, kage removes all `