A cross-platform desktop application for downloading websites. Built with Wails and Svelte.
SiteBox GUI provides a user-friendly interface for the SiteBox command-line tool, making it easy to download entire websites for offline viewing.
- Easy-to-use interface - Simply enter a URL and click download
- Real-time progress - Watch downloads happen with live statistics
- Download history - Keep track of past downloads and re-run them
- Presets - Save your favorite configurations for quick access
- Customizable settings - Configure concurrent downloads, depth limits, retries, and more
- Theme support - Light, dark, and system theme options
- Cross-platform - Works on macOS, Windows, and Linux
Download the latest release for your platform from the Releases page:
- macOS:
SiteBox.app(Universal binary for Intel and Apple Silicon) - Windows:
SiteBox.exe - Linux:
SiteBox(AppImage)
- Download
SiteBox.app.zip - Extract and drag
SiteBox.appto your Applications folder - On first launch, right-click and select "Open" to bypass Gatekeeper
- Download
SiteBox.exe - Run the executable (you may need to allow it through Windows Defender)
- Download the AppImage
- Make it executable:
chmod +x SiteBox.AppImage - Run:
./SiteBox.AppImage
- Enter URL - Paste the website URL you want to download
- Domain Filter - Automatically set from URL, limits downloads to this domain
- Output Directory - Click "Browse" to select where to save files
- Start Download - Click the button and watch the progress
Click "Show Advanced Options" to configure:
| Option | Description | Default |
|---|---|---|
| Concurrent Downloads | Number of parallel downloads | 5 |
| Max Depth | How deep to follow links | 50 |
| Retries | Retry attempts for failed requests | 3 |
| Include Images | Download images (PNG, JPG, SVG, etc.) | Off |
| Blacklist | URL patterns to exclude | github.com |
| Extensions | File types to download | .js, .css, .woff2, .woff, .ttf |
Save your current configuration as a preset:
- Configure your download options
- Go to the Presets tab
- Click "Save Current Settings"
- Enter a name and save
Load a preset anytime by clicking "Load" next to it.
The History tab shows all completed downloads. You can:
- Re-run - Start a new download with the same configuration
- Open Folder - Open the output directory in your file manager
Configure default behavior in the Settings tab:
- Theme - Choose Light, Dark, or System
- Default Output Directory - Pre-fill the output path
- Default Options - Set default values for concurrent downloads, depth, retries
- Include Images by Default - Always download images
- Desktop Notifications - Get notified when downloads complete
# Install Wails CLI
go install github.com/wailsapp/wails/v2/cmd/wails@latest# Clone the repository
git clone https://github.com/taqnihub/sitebox-gui.git
cd sitebox-gui
# Install dependencies
make deps
# Build for current platform
make build
# Or build for all platforms
make build-all# Run in development mode with hot reload
make devsitebox-gui/
├── main.go # Wails entry point
├── wails.json # Wails configuration
├── internal/gui/ # Go backend
│ ├── app.go # App lifecycle
│ ├── download.go # Download management
│ ├── history.go # History persistence
│ ├── presets.go # Presets management
│ └── settings.go # Settings management
└── frontend/ # Svelte frontend
└── src/
├── routes/ # Pages
└── lib/
├── components/ # UI components
└── stores/ # State management
Settings, presets, and history are stored in:
- macOS:
~/Library/Application Support/sitebox/ - Windows:
%APPDATA%\sitebox\ - Linux:
~/.config/sitebox/
- macOS 10.15 or later
- Windows 10 or later
- Linux with WebKit2GTK
MIT License - see LICENSE for details.
- SiteBox CLI - Command-line version
Contributions are welcome! Please feel free to submit issues and pull requests.



