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

quapp

v1.2.0

Published

A lightweight CLI tool for Quapp development - start a Vite dev server with LAN QR code, build .qpp packages, and publish to Quapp Store

Downloads

116

Readme

quapp

Dev server and build tool for Quapp projects. Serves your app over LAN with a QR code for mobile testing, and packages production builds as .qpp files.

Quick Start

If you scaffolded with create-quapp, run the pre-configured scripts:

npm run dev      # Start dev server
npm run qbuild   # Build .qpp package

Installation

For existing Vite projects:

npm install -D quapp

Initialize configuration and scripts:

npx quapp init

Commands

quapp serve

Starts Vite dev server with LAN network access and QR code.

npx quapp serve

| Flag | Description | |------|-------------| | -p, --port <port> | Server port (default: 5173) | | --host <host> | Host to bind | | --open | Open in browser | | --no-qr | Disable QR code | | --https | Enable HTTPS |

quapp build

Builds for production and creates .qpp package.

npx quapp build

| Flag | Description | |------|-------------| | -o, --output <file> | Output filename (default: dist.qpp) | | --skip-prompts | Non-interactive mode | | --no-clean | Keep dist folder |

quapp init

Initialize Quapp in an existing Vite project.

npx quapp init

| Flag | Description | |------|-------------| | -y, --yes | Skip prompts | | -f, --force | Overwrite existing config | | --dry-run | Preview changes |

quapp login

Sign in to your Quapp developer account to enable publishing.

npx quapp login

| Flag | Description | |------|-------------| | --email <email> | Account email (skip interactive prompt) | | --password <pass> | Account password (skip interactive prompt) |

quapp logout

Sign out and remove stored credentials.

npx quapp logout

quapp whoami

Show the currently logged-in user information.

npx quapp whoami

quapp publish

Upload and publish a .qpp file to the Quapp Store.

npx quapp publish

| Flag | Description | |------|-------------| | --file <path> | Path to .qpp file (default: ./dist.qpp) | | -n, --notes <text> | Release notes for this version | | --visibility <vis> | Visibility: public, unlisted, or private (default: public) |

Configuration

quapp.config.json:

{
  "server": {
    "port": 5173,
    "qr": true,
    "openBrowser": false
  },
  "build": {
    "outputFile": "dist.qpp"
  }
}

Global Options

| Flag | Description | |------|-------------| | --json | JSON output for automation | | --verbose | Detailed logging | | -h, --help | Show help | | -v, --version | Show version |

Automation

For CI/CD or programmatic usage:

npx quapp build --skip-prompts --json
{
  "success": true,
  "outputFile": "dist.qpp",
  "outputPath": "/path/to/dist.qpp",
  "duration": 1234
}

Requirements

  • Node.js 18+
  • Vite project

Related

License

MIT