npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@native-sdk/cli

v0.5.2

Published

The Native SDK: the complete toolkit for building native desktop applications — declarative markup, native rendering, WebView surfaces, and OS capabilities

Readme

@native-sdk/cli

The command line for Native SDK: the complete toolkit for building native desktop applications.

Views are declarative markup in .native files, logic is plain Zig, and Native SDK's own engine draws every pixel into real OS windows — no browser, no WebView, no interpreter in the binary.

Install

npm install -g @native-sdk/cli

The install runs no scripts: the native binary arrives as a per-platform optional dependency (@native-sdk/cli-<platform>), and this package carries the SDK source your apps build against, so native init and native dev work offline after install. The pinned Zig toolchain is fetched into ~/.native/toolchains/ on first build unless a compatible zig is already on your PATH.

Use

native init my_app
cd my_app
native dev

A native window opens with a working counter. The scaffold is a native-rendered markup app with no build files — native dev|build|test own the build — and src/app.native hot-reloads while the app runs, keeping your state. native check validates every view in milliseconds without building.

When part of your product is the web, WebView surfaces coexist with the native canvas; web-frontend scaffolds (--frontend next, --frontend vite, and more) install their generated frontend dependencies automatically on first run.

Read the full guide at native-sdk.dev/quick-start.

Commands

| Command | Description | |---------|-------------| | native init [path] [--frontend <native\|next\|vite\|react\|svelte\|vue>] [--full] | Scaffold a new Native SDK app | | native dev [dir] | Build and run the app (markup hot reload; managed frontend dev server when configured) | | native build [dir] | Build a ReleaseFast binary into zig-out/bin/ | | native test [dir] | Run the app's test suite | | native check [dir] | Validate src/**.native markup and app.zon against the model contract | | native markup check\|lsp | Check individual markup files, or serve diagnostics, completion, and hover to your editor | | native eject [dir] | Write an owned build.zig/build.zig.zon into the app | | native doctor | Check host environment, WebView, manifest, and CEF | | native validate | Validate app.zon against the manifest schema | | native package | Package the app for distribution | | native bundle-assets | Copy frontend assets into the build output | | native automate | Drive a running app: snapshots, widgets, assertions, screenshots, record/replay | | native skills list\|get <name> | List or print the built-in AI agent skills | | native version | Print the native version |

More

The full documentation is at native-sdk.dev — the app model, native UI authoring, components, testing, automation, capabilities, packaging, and platform support.

Native SDK is pre-1.0 and Apache-2.0 licensed; the source lives at github.com/vercel-labs/native.