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

creo-create-tauri-app

v0.2.7

Published

CLI scaffolding tool for [Creo](../../README.md) + [Tauri v2](https://v2.tauri.app) cross-platform apps. Creates a ready-to-run desktop and/or mobile application with Creo as the UI framework.

Readme

creo-create-tauri-app

CLI scaffolding tool for Creo + Tauri v2 cross-platform apps. Creates a ready-to-run desktop and/or mobile application with Creo as the UI framework.

Usage

bunx creo-create-tauri-app my-app

Or without a name (will be prompted):

bunx creo-create-tauri-app

Interactive Setup

The CLI asks:

  1. Project name — directory name and package name (skipped if passed as argument)
  2. Target platforms — multi-select from: macOS, Windows, Linux, iOS, Android, Web

Desktop targets (macOS, Windows, Linux) are selected by default. Mobile targets (iOS, Android) require additional setup after scaffolding.

What Gets Generated

my-app/
├── package.json            # Creo + Tauri deps, dev/build scripts
├── tsconfig.json
├── vite.config.ts           # Vite frontend bundler
├── index.html
├── .gitignore
├── src/
│   ├── main.ts              # Creo app mount
│   └── app.ts               # Starter component
└── src-tauri/
    ├── Cargo.toml            # Rust dependencies
    ├── build.rs
    ├── rust-toolchain.toml
    ├── tauri.conf.json       # Tauri configuration
    ├── capabilities/
    │   └── default.json      # Security permissions
    ├── icons/
    │   └── .gitkeep
    └── src/
        ├── main.rs           # Rust entry point
        └── lib.rs            # Tauri setup + commands

Scripts

| Script | Command | Description | |--------|---------|-------------| | dev | vite | Frontend dev server only | | build | vite build | Build frontend to dist/ | | tauri:dev | tauri dev | Full desktop app with hot reload | | tauri:build | tauri build | Production desktop build |

Target Platforms

Desktop (macOS, Windows, Linux)

Works out of the box after scaffolding:

cd my-app
bun install
bun run tauri:dev

Prerequisite: Rust must be installed.

iOS

Requires one-time initialization after scaffolding:

bunx tauri ios init        # Generate Xcode project
bunx tauri ios dev         # Run on simulator
bunx tauri ios build       # Build for distribution

Prerequisites: macOS with Xcode installed.

Android

Requires one-time initialization after scaffolding:

bunx tauri android init    # Generate Android project
bunx tauri android dev     # Run on emulator
bunx tauri android build   # Build APK/AAB

Prerequisites: Android Studio with NDK installed.

Web

When "Web" is selected, the app still works as a standard Vite app in the browser via bun run dev. The Tauri APIs gracefully degrade — you can use window.__TAURI__ checks or @tauri-apps/api to conditionally use native features.

Tauri Commands

The generated src-tauri/src/lib.rs includes a sample greet command:

#[tauri::command]
fn greet(name: &str) -> String {
    format!("Hello, {}! You've been greeted from Rust!", name)
}

Call it from the frontend:

import { invoke } from "@tauri-apps/api/core";

const greeting = await invoke<string>("greet", { name: "World" });

Icons

The generated project includes an empty src-tauri/icons/ directory. Generate icons from a source image:

bunx tauri icon path/to/icon.png

This creates all required icon sizes for every platform.

Customization

  • Tauri config: Edit src-tauri/tauri.conf.json for window settings, bundle config, security policies
  • Rust backend: Add commands and plugins in src-tauri/src/lib.rs
  • Capabilities: Edit src-tauri/capabilities/default.json to grant additional permissions
  • Frontend: Standard Creo app in src/ — use any Creo patterns and packages