Best viewed in Nordstjernen

Northstar is the free-software web browser of the Nordstjernen project

Northstar Browser

Northstar is a minimalist web browser written from scratch in C. One window, one page, one process — about 149,000 lines of original C, small enough for one person to read and audit end-to-end. It carries no upstream browser engine: no Gecko, no WebKit, no Blink. It is free software under the GNU General Public License, version 3 or later, and it runs on Linux, macOS and Windows.

Northstar Browser version 1.0.6 released! A rebuilt CSS grid, an indexed cascade, faster text layout, Web Audio that actually renders, and relative colour syntax. Read the announcement · More info here.

Northstar 1.0.6's about:start start page — the redrawn open-source-edition splash above a search box
Northstar 1.0.6’s about:start page — one window, one page, and a search box. more screenshots »

Free software. Licensed under the GNU GPL, version 3 or later — use it, read it, change it, share it. The whole engine is in the repository at github.com/nordstjernen-web/northstar-browser.

Written from scratch. Every behaviour is implemented in the project's own C — the parser glue, the cascade and value parsing, layout, paint, and the DOM and CSSOM bindings. Compliance is not inherited from an upstream engine; it is measured, section by section, against the specification text.

One window, one page, one process. All rendering happens in a single compact process, prioritizing auditability over the isolation a multi-process browser buys. On Linux it runs behind a Landlock filesystem sandbox (plus PR_SET_NO_NEW_PRIVS) with a default-deny seccomp syscall filter, in both GUI and headless modes. There is no JIT.

Private by construction. No telemetry, no update pings, and no AI assistant or AI-style web APIs. Safe browsing checks a top-level navigation's host against a local SHA-256 blocklist before it is fetched — the check never leaves your machine. Cookies, storage and the cache are partitioned by origin.

what it does

what it leaves out

Northstar is deliberately smaller than Nordstjernen, the source-available flagship built from the same engine. It has no multi-window or multi-tab browsing, no per-tab renderer processes, no WebGL or WebGPU, no embedded PDF viewer, and no AI-style web APIs.

Video is MPEG-1 only: there is no MPEG-4 or H.264 decoder and no Media Source Extensions, so streaming video sites do not play. Web Audio renders mono, and AudioParam automation curves are ignored. The stop button ends the loading state and marks the frame stale, but does not abort the network request behind it.

Where the engine stands against the HTML and CSS specifications — per-area web-platform-tests scores, how to reproduce them, and the known structural gaps — is recorded in docs/compliance.md.

specifications

Technical specifications of Northstar 1.0.6
version 1.0.6 — released 31 July 2026 · announcement
character free-software edition of the Nordstjernen project · single window, single page, single process
language C · ~149 kLOC original, excluding the vendored WAMR, Wuffs and audio decoders · GTK 4 shell · fully auditable
html / css lexbor v3.0.0 (parser, WHATWG URL, selectors) · the engine's own cascade and layout
javascript quickjs-ng v0.15.1 — bytecode interpreter, no JIT
text ns-pango — a Pango fork with a process-wide shaping cache · HarfBuzz · FriBidi
webassembly WAMR (vendored subset) — interpreter behind the WebAssembly JS API
images Wuffs v0.4 (PNG / APNG / GIF / BMP / JPEG / WebP) · AVIF via libavif (optional) · SVG rendered in-engine
media MPEG-1 <video> via pl_mpeg, with play, pause and seeking · audio — MP3, MP2, Ogg Opus/Vorbis · Web Audio graph · no H.264 and no Media Source Extensions
extensions WebExtensions — local extensions with content scripts, packaged resources, storage and runtime messaging
webgl — (no WebGL, no WebGPU)
ai none — no AI assistant and no AI-style web APIs, by design
ui GTK 4 (≥ 4.14; ≥ 4.22.1 on Windows) · dark theme follows the desktop
network libcurl ≥ 8.5 · HTTP/2 · HTTP/3 through the alt-svc cache when the linked libcurl provides it · request deduplication and reusable preloads · Vary-aware caching
hardening Landlock filesystem sandbox + PR_SET_NO_NEW_PRIVS · default-deny seccomp filter on Linux, in GUI and headless modes · no JIT
privacy no telemetry · no update pings · HSTS · CSP · SRI · partitioned cookies and storage · on-device safe browsing against a local blocklist
standards behaviour measured against the spec text, section by section · web-platform-tests run through headless mode · see docs/compliance.md
platforms linux (primary) · macos · windows
license GNU GPL v3 or later — free software
source github.com/nordstjernen-web/northstar-browser

See the side-by-side comparison of Nordstjernen and Northstar on the home page.

download

Latest tagged release: Northstar 1.0.6 — released 31 July 2026. full release notes »

Northstar 1.0.6 downloads
Windows northstar-1.0.6-windows-x86_64.zip — self-contained, 57 MB compressed, 156 MB unpacked
Fedora (source RPM) northstar-1.0.6-1.fc44.src.rpm
Linux & macOS build from source with meson — see build and run below
Source 1.0.6.tar.gz · 1.0.6.zip
All releases github.com/nordstjernen-web/northstar-browser/releases

The Windows build needs no installer and no MSYS2 — extract it anywhere and run northstar.exe. Windows marks anything downloaded from the internet as blocked, so before extracting, right-click the .zip, choose Properties, tick Unblock at the bottom of the General tab and press OK. Doing it on the archive first saves repeating it on northstar.exe afterwards, since the mark is copied to every file extracted from a blocked archive.

Download Northstar 1.0.6 »

build and run

Linux is the primary platform. On Debian or Ubuntu, install the development packages and build with meson:

dependencies sudo apt install build-essential pkg-config meson ninja-build cmake libgtk-4-dev libcurl4-openssl-dev libssl-dev libuchardet-dev libharfbuzz-dev libfribidi-dev libcairo2-dev libfontconfig-dev libfreetype-dev libpsl-dev libsqlite3-dev libseccomp-dev libsdl2-dev zlib1g-dev
build meson setup builddir · meson compile -C builddir
run ./builddir/src/gtk/northstar
smoke test ./scripts/dev.sh build · ./scripts/dev.sh smoke — renders deterministic local fixtures through the headless engine and compares them with the checked-in baselines
headless ./builddir/src/gtk/northstar --headless --dump=text about:start

Meson feature options include -Davif=disabled, -Daudio=disabled, -Dwasm=disabled and -Dgtk=disabled for smaller or engine-only builds. WAMR, Wuffs, pl_mpeg and minimp3 are vendored in-tree; lexbor, quickjs-ng and ns-pango are fetched by meson setup as pinned upstream subprojects. Full instructions are in the README.

news

« back to nordstjernen.org