TopGit theo dõi vercel-labs/native trên GitHub, đã đạt 7.3k sao. Toolkit for building native desktop apps
Tóm tắt dựng từ metadata GitHub của chính dự án — chưa có bài review TopGit. Trang sẽ tự động cập nhật khi bài review đầy đủ được xuất bản.
VÌ SAO CHƯA CÓ REVIEW
TopGit viết bài đầy đủ cho repo có nhiều sao nhất và được yêu cầu nhiều nhất. Trang này là snapshot trong thời gian chờ — xem README gốc ở tab READ ME.
Native SDK is the complete toolkit for building native desktop applications.
Native SDK exists because expressive UI and native performance should not be competing goals. Developers often choose web-based runtimes because they offer freedom, speed and control over the product experience. But that freedom often comes with a heavy runtime. Native SDK keeps the expressive authoring model and replaces the runtime with native rendering.
Views are declarative markup in .native files, logic is plain TypeScript compiled to native code at build time — or Zig, first-class by choice — and Native SDK's own engine draws every pixel into real OS windows. No browser, no WebView, no JS runtime in the binary: Zig is how everything works, TypeScript and Native markup are how apps are authored.
Soundboard, Notes, and Calculator from examples/ — every pixel drawn by the Native SDK engine, captured through its deterministic reference renderer. The images follow your color scheme.
Quick start
Install the CLI:
npm install -g @native-sdk/cli
Create and run an app:
native init my_app
cd my_app
native dev
A native window opens with a working counter. The whole app is three files of truth — view, logic, manifest — and no build config. The view is src/app.native, a markup file that binds values and dispatches messages (the counter row at its heart):
All logic lives in src/core.ts: a Model interface, a Msg union, and one pure update function — the only place state changes, plain TypeScript compiled to native code at build time:
export function update(model: Model, msg: Msg): Model {
switch (msg.kind) {
case "increment":
return { ...model, count: model.count + 1 };
case "decrement":
return { ...model, count: model.count - 1 };
case "reset":
return { ...model, count: 0 };
}
}
Prefer Zig for the core? native init my_app --template zig-core scaffolds the same app with src/main.zig — same loop, same runtime, first-class by choice.
Edit src/app.native while native dev runs and the window updates in place, keeping your state. native dev --core runs the TypeScript core under node for instant logic checks, native check validates the core and every view in milliseconds without building, and native build produces an optimized release binary.
Read the full guide at native-sdk.dev/quick-start.
What you get
Beautiful by default — Great software should not start from a blank slate. The built-in component catalog — buttons, tabs, text fields, dialogs, charts, virtual lists, and more — ships with considered typography, spacing, and color, so the app native init scaffolds already looks intentional the first time its window opens.
Customizable by design — Your app should have its own identity, not ours. Styling is design tokens end to end: color, radius, and typography resolve by name, re-resolve live when the theme changes, and can be replaced wholesale — examples/soundboard and examples/deck are the same music player separated only by tokens and a chrome pass.
Native from the start — Every interface is rendered without a browser or WebView. The engine draws into real OS windows while scroll physics, menus, dialogs, the tray, and text input stay with the operating system, and markup compiles into the executable at build time, so a release build carries no parser or interpreter — the scaffolded counter app builds to a single binary a few megabytes small.
Predictable state — State changes should be explicit, inspectable and easy to reason about. Events produce messages, messages update state, and state renders the interface; markup can bind and dispatch but never mutate. The loop is so deterministic that native automate record journals a session and replay reproduces it headlessly, verified frame by frame against state fingerprints.
Simple authoring — Interfaces should be easy to read, easy to write and easy to generate. Views are elements, flex layout, {bindings}, and expressions like selected="{f == filter}", and native check validates every view against your app's actual Model and Msg — bindings, iterables, message tags — in milliseconds, with file:line:column errors that teach.
AI is part of the workflow — Native SDK is designed for a world where humans and AI agents build software together. Every app embeds an automation server, so any agent can read accessibility snapshots, drive widgets, assert on live state, and take deterministic screenshots of the running window; accessibility findings are machine-checked in native check; and the CLI ships the agent skills that teach all of it (native skills list).
Examples
The apps pictured above live in examples/, most as zero-config projects — app.zon plus src/, no build files — run straight from their directory with native dev. Start with the TypeScript examples when learning the primary authoring path. The -ts suffix on soundboard-ts and system-monitor-ts is historical because those apps are ports kept beside older Zig originals. Chatbot is TypeScript-only and follows the unsuffixed naming used by new apps created with native init.
Example
What it shows
chatbot
TypeScript + Native markup end to end: modules, a text editor, streaming fetch effects, and replay-safe configuration.
soundboard-ts
The full music-player showcase in TypeScript + Native markup: audio, search, assets, timers, and context menus.
system-monitor-ts
A live process monitor in TypeScript + Native markup: subprocess effects, tables, charts, and timers.
calculator
A complete small app: markup keypad, keyboard input, chrome shortcuts, theming.
notes
Persistence through the effects channel: debounced writes, restore on boot, dialogs, search.
soundboard
Album grid with decoded cover art, context menus, timers, and a custom theme.
deck
The soundboard player rebuilt as a dense hardware chassis: two windows, same widgets, different tokens.
feed
A 100,000-row list, virtualized with runtime-owned scrolling.
The unsuffixed showcase apps above predate the TypeScript default and retain their Zig cores as first-class alternative implementations. The full catalog in examples/README.md also covers guarded OS capabilities, GPU surfaces, WebView composition, web-frontend shells, and the iOS/Android embed hosts.
Platforms
macOS is the primary development platform and carries the deepest support: Metal presentation, OS scroll physics, native context menus, app menus, tray, and dialogs. Linux runs the full showcase through the deterministic software renderer in real windows, with pointer, keyboard, scroll, native context menus, IME composition, and HiDPI; Windows runs on a Win32 host with native context menus and IME composition and is exercised in CI, including real input injection. Mobile support is experimental: iOS is simulator-proven through the embed library and Android cross-compiles with the full embed ABI, but APIs and tooling on both are still evolving — desktop is the mature surface. WebView surfaces coexist on every desktop platform. The platform support matrix documents exactly what each host supports today.
Documentation
The full documentation is at native-sdk.dev.
Quick Start — install to a running, tested app
Philosophy — the six principles behind the toolkit
App Model — the model/message/update loop, wiring, and hot reload
TypeScript Cores — the app-core subset, effects, subscriptions, and the node dev loop
Native UI — every element, attribute, and pattern in the markup
Components — the component catalog
State & Data Flow — derive-don't-store, bindings, and text editing
Testing — full-loop UI tests, headless on any machine
Capabilities — guarded OS services: notifications, clipboard, dialogs, credentials
Packaging — from binary to distributable app
Platform Support — what each host supports today
Contributing
Native SDK is pre-1.0: APIs still move, and the toolkit is evolving quickly. Bug reports and focused pull requests are welcome — for larger changes, open an issue first so the design can be discussed. See CONTRIBUTING.md for the development setup and local checks.
Trang TopGit này là một snapshot — tab "Readme" hiển thị nguyên văn README của repo (đã bỏ link, giữ ảnh). Repo GitHub ở github.com/vercel-labs/native là nguồn chính thức.
vercel-labs/native có bao nhiêu sao?
vercel-labs/native có 7.3k sao GitHub — tải lại trang để xem số mới nhất, hoặc xem trực tiếp github.com/vercel-labs/native. TopGit phản chiếu số sao của GitHub nhưng không cam kết đến từng phút.
vercel-labs/native có phải mã nguồn mở không?
Có — vercel-labs/native phát hành theo license Apache-2.0, nghĩa là mã nguồn mở để đọc, fork và (tùy license) tái sử dụng. Mã: github.com/vercel-labs/native.
vercel-labs/native có trang demo không?
Dự án có trang chủ ở https://native-sdk.dev. Tab "Readme" ở trang này thường có ảnh chụp và hướng dẫn bắt đầu nhanh.
vercel-labs/native là gì?
vercel-labs/native (vercel-labs/native) là dự án Zig trên GitHub. Theo mô tả gốc: Toolkit for building native desktop apps