Bundle links, notes & files — share instantly with no fuss, no cloud, no accounts. Privacy-focused, and open source.
✨ Features
📦 Bundle anything: links, notes, pics
📶 Share instantly via QR code or small file
🔒 Free forever, no logins, no ads
🎨 Simple, clean, and beautiful UI
🤝 Open source and welcoming contributions
🤝 Contributing
Got ideas or fixes? Pull requests and issues are welcome! Let’s keep it simple, powerful, and fun.
📄 License
MIT License — see the LICENSE file for details.
Built using Nativefier.
- Loads the live website automatically
- Custom app name and icon
- Portable and easy to distribute
- Lightweight and simple for end users
- Available for Windows and Linux
Download the latest version from the Releases page.
- Download the zip file from the latest release (look for
Static Link-win32-x64.zip). - Extract the zip folder to any location on your PC.
- Open the extracted folder.
- Run
Static Link.exe.
All required DLLs and files are included in the zip, so the app will work immediately after extraction.
- Download the Linux zip file from the latest release (look for
Static Link-linux-x64.zip). - Extract the zip folder to any location.
- Open the extracted folder.
- Run
Static Link(you may need to mark it as executable:chmod +x Static\ Link).
All required binaries and files are included in the zip, so the app will work immediately after extraction.
If you want to rebuild the app yourself:
- Node.js installed
- Nativefier installed globally:
npm install -g nativefier
Open PowerShell or your terminal in the folder containing your icon and run:
nativefier "https://ld-beepbeep.github.io/Static-Link-Web/" `
--name "Static Link" `
--icon "icon.ico" `
--out "build" `
--platform "windows"nativefier "https://ld-beepbeep.github.io/Static-Link-Web/" \
--name "Static Link" \
--icon "icon.ico" \
--out "build" \
--platform "linux"--name→ Sets the window title and app name--icon→ Path to your.icoor.pngfile (Linux may require PNG)--out→ Folder where the app will be built--platform→ Target OS
After building, you will have a folder like:
build/Static Link-win32-x64
build/Static Link-linux-x64
Inside, you’ll see the executable along with all necessary files.
For convenience, you can include a PowerShell script build.ps1 (Windows) or a shell script build.sh (Linux):
# build.ps1
nativefier "https://ld-beepbeep.github.io/Static-Link-Web/" `
--name "Static Link" `
--icon ".\icon.ico" `
--out ".\build" `
--platform "windows"#!/bin/bash
nativefier "https://ld-beepbeep.github.io/Static-Link-Web/" \
--name "Static Link" \
--icon "./icon.png" \
--out "./build" \
--platform "linux"- Windows: Runs on Windows 10/11. Must unzip the folder before launching
Static Link.exe. - Linux: Runs on most modern distributions. Must unzip and may need to mark as executable before launching.
- Open source: Source and build instructions are in the repo, but the release contains the compiled app.