Skip to content

korjwl1/wireguide

Repository files navigation

WireGuide

WireGuide

A WireGuard VPN client for people who don't want to think about WireGuard.

Release Stars Homebrew Platform License

한국어



VPN Connected

Config Editor

Autocomplete

Settings

Why WireGuide

Most WireGuard clients are built for the person who set up the server. WireGuide is built for the rest of the team.

Hand a .conf file to a non-technical coworker. They should be online in three steps:

  1. Drag the file into WireGuide
  2. Click On
  3. (There is no step 3.)

That's the whole product from the user's side. Everything else is plumbing that quietly keeps the tunnel up, so the IT person doesn't have to keep fielding "the VPN is broken again" messages.


Design

Small surface, careful insides.

The UI deliberately exposes a tiny number of things to click. Features that ship in WireGuide have to satisfy two rules:

  1. They must not break the system when something goes wrong.
  2. The everyday user must not need to know they exist.

That means most of WireGuide runs silently in the background.

What the user sees

  • Drag-and-drop .conf import (also QR and ZIP)
  • A list of tunnels, each with one big toggle
  • A tray icon that shows whether you're connected
  • Optional: connect when you join the office Wi-Fi, disconnect when you leave

What runs silently underneath

  • Sleep/wake recovery — the tunnel comes back after the lid closes
  • Route monitor — keeps working when you move between Wi-Fi and Ethernet
  • Kill switch — if the tunnel drops, nothing leaks while WireGuide is reconnecting. Uses the OS-native firewall (pf on macOS, WFP on Windows, nftables on Linux), not a userspace shim
  • Health check + auto-reconnect — fixes a stalled handshake without the user noticing
  • DNS protection — DNS queries are pinned to the tunnel
  • Conflict detection — warns when another VPN (Tailscale, another WG interface) would step on routes

For the person who set up the server

  • Config editor with WireGuard syntax highlighting and autocomplete (CodeMirror 6)
  • DNS leak test and route table view
  • Real-time RX/TX dashboard
  • Multi-tunnel — keep dev / staging / prod connected at once
  • Per-tunnel notes and connection history

Not included on purpose

  • No account, no telemetry, no "Pro" tier
  • No protocols other than WireGuard
  • No bundled extras you didn't ask for

Stability over features

WireGuide ships fewer knobs than most desktop VPN clients on purpose. The trade is that the few it does ship are meant to be boring and reliable.

  • Privilege separation. A single binary runs in two modes. The GUI runs unprivileged. A small helper runs as root / Administrator. They talk over a local Unix socket (macOS/Linux) or named pipe (Windows). Nothing is exposed over HTTP or the network.
  • OS-native firewall. The kill switch uses pf (macOS), WFP (Windows), or nftables (Linux) — not a userspace packet filter that fails open.
  • Up-to-date crypto. Built on wireguard-go (May 2025) — 57 commits ahead of the engine inside the official macOS app, which hasn't been updated since Feb 2023.
  • Manual QA per release. Every tagged release is exercised on macOS (Apple Silicon) and Windows 11 (amd64) before it goes out.

If something breaks, helper logs are plain text — not behind a paywall. Open an issue and attach them.


Install

Tested on macOS 15+ (Apple Silicon) and Windows 11 (amd64).

macOS (Homebrew) — recommended

brew tap korjwl1/tap
brew install --cask wireguide

macOS (Manual)

Download from Releases, unzip, move to /Applications.

If macOS shows "app is damaged", run: xattr -cr /Applications/WireGuide.app

Windows (Installer)

Download the latest WireGuide-windows-amd64.exe (or -arm64.exe) installer from Releases and run it. The NSIS installer registers the helper service and shortcut.

Windows SmartScreen may warn that the publisher is unknown — the binary is currently unsigned. Click "More info" → "Run anyway".

Build from Source

brew install go node
go install github.com/go-task/task/v3/cmd/task@latest
go install github.com/wailsapp/wails/v3/cmd/wails3@latest

task build
./bin/wireguide

Architecture

graph LR
    subgraph GUI["GUI Process (unprivileged)"]
        A1[Wails + Svelte]
        A2[Config editor]
        A3[System tray]
        A4[Diagnostics]
    end

    subgraph Helper["Helper Process (root)"]
        B1[wireguard-go + wgctrl]
        B2[TUN / routing / DNS]
        B3[Kill switch / firewall]
        B4[Reconnect monitor]
        B5[Route monitor]
    end

    GUI <-->|"JSON-RPC over UDS"| Helper
Loading
  • Single binarywireguide runs as GUI or helper (--helper flag)
  • Privilege separation — GUI is unprivileged; helper runs as root
  • IPC — JSON-RPC over Unix socket (macOS/Linux) or named pipe (Windows)

Tech Stack

Component Technology
Language Go 1.25+
GUI Wails v3
Frontend Svelte + Vite
WireGuard wireguard-go + wgctrl-go
Editor CodeMirror 6
Firewall macOS pf / Linux nftables / Windows WFP (Filtering Platform)
i18n English, Korean, Japanese

Contributing

See CONTRIBUTING.md for development setup and guidelines.

Found a bug? Open an issue.


Sponsor

Sponsor

If WireGuide is useful to you, consider sponsoring to support development.


License

MIT

About

Cross-platform WireGuard VPN desktop client — Go + Wails v3 + Svelte

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Packages

 
 
 

Contributors