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

@isthatuzii/create-nano-app

v2.0.3

Published

Desktop application scaffolding tool for the Nano Framework

Downloads

94

Readme

@isthatuzii/create-nano-app

Version License: CC BY--ND 4.0 Built by Imperium Interactive

What is nano.exe?

nano.exe is a framework written in rust that allows you to create native desktop applications with a rust backend and a solidjs frontend. It is inspired by Tauri but has minimal bloat and is sub 250 crates, whereas Tauri V2 is over 400 crates, the npm install is very small as well. This is mainly because the computers at my work are very slow and using nano is much faster than Tauri.

This Framework is incredibly bare bones but is capable of creating production quality applications.

CLI for building native desktop apps with the Nano Framework — SolidJS frontends + Rust backends. Major update: v2.0.0 — adds an IPC system inspired by Tauri. Call Rust backend functions from the frontend using invoke().

⚠️ License notice (short): This repository is released under CC BY-ND 4.0. You may copy and redistribute unmodified material with attribution. You may NOT distribute modified versions. If you want to modify or redistribute derivatives, you must obtain prior written permission: [email protected]. This is not an OSI-approved open-source license — expect less community contribution out of the box.


Highlights — v2.0.0

  • New IPC system — call registered Rust functions via invoke() (see src/api/invoke.ts)
  • Minimal frontend boilerplate for backend RPC
  • Faster developer experience for SolidJS + Rust native apps

Quick start

# With npm
npm create @isthatuzii/nano-app@latest my-app

# With yarn
yarn create @isthatuzii/nano-app my-app

# With pnpm
pnpm create @isthatuzii/nano-app my-app

# With bun
bun create @isthatuzii/nano-app my-app

# Direct npx
npx @isthatuzii/create-nano-app@latest my-app

Example — invoking backend functions

Import and call invoke from your frontend:

import api, { invoke } from "./api/api";

// Call any registered function in the Rust backend
const result = await invoke("function_name", { arg1: value1, arg2: value2 });

Registered backend functions live in src-nano/nano_registery.rs.


Features

  • Native desktop applications with a Rust backend
  • Hot reload (Vite + cargo-watch)
  • Portable single-executable builds with embedded assets
  • Modern JavaScript (ES2020+) + Vite build system
  • VS Code workspace + recommended extensions (Rust, Solid tooling)
  • Optional HTTP API with Axum
  • Post-creation health checks and diagnostics

Supported UI frameworks

  • SolidJS (default)

Project layout (example)

my-app/
├── src-nano/               # Rust backend
│   ├── main.rs
│   ├── nano_registery.rs   # IPC / RPC registry
│   └── modules/
├── src/                    # Frontend source
├── src/api/                # frontend invoke/api helpers
├── nano.config.json
├── Cargo.toml
└── package.json

Development commands

# start development with hot reload
npm run nano:hot

# build and run locally
npm run nano

# produce portable release
npm run nano:release

Requirements

  • Rust (install via https://rustup.rs) — latest stable recommended
  • Node.js 18+
  • One of: npm / yarn / pnpm / bun

Documentation & Support


Contributing / Modifications

Short and blunt: this project is intentionally locked down by license. You may use and redistribute unmodified copies provided you give clear attribution to Imperium Industries / Microcode Labs / Imperium Interactive and include this README and license. You may not distribute modified or derivative versions under CC BY-ND 4.0.

If you want to contribute changes or redistribute a modified version, do not open a PR expecting it to be merged without prior agreement — first email [email protected] to request written permission and discuss contribution terms. If you prefer an open, collaborative community workflow, tell us — we can discuss switching to a different license (e.g., permissive + CLA), but that is a policy choice intentionally left to the maintainers.


Changelog (short)

  • v2.0.0 — IPC system + frontend invoke() RPC; reduced frontend boilerplate.

Credits

Built by Imperium Interactive — powered by Microcode Labs Developed by [email protected] under Imperium Industries’ open-source tooling subsidiary, Microcode Labs.


LICENSE

This project uses Creative Commons Attribution-NoDerivatives 4.0 International (CC BY-ND 4.0). For the canonical license text and legal details, see the included LICENSE file or visit: https://creativecommons.org/licenses/by-nd/4.0/