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

@nuxfly/cli

v1.1.7

Published

CLI tool for deploying Nuxt applications to Fly.io

Downloads

41

Readme

@nuxfly/cli

A powerful CLI tool for deploying Nuxt applications to Fly.io with integrated SQLite and S3 storage support.

[!WARNING] This project is in early development and may not be fully functional yet.

Features

  • 🚀 One-command deployment - Deploy Nuxt apps to Fly.io with automatic infrastructure setup
  • 🗄️ SQLite integration - Automatic SQLite database continuous backup via Litestream
  • 🌧 Drizzle integration - Automatically applies Drizzle migrations on deployment
  • 📦 Tigris (S3) storage - Zero configuration to provision and access public and private file storage buckets
  • 🔄 Import existing apps - Seamlessly import and configure existing Fly.io applications
  • 🔧 Database management - Integrated Drizzle Studio for database operations

Installation

npm install -g @nuxfly/cli

Quick Start

# Create and deploy a new Nuxt app
nuxfly launch --name my-app

# Deploy an existing project
nuxfly deploy

# Open database studio
nuxfly studio

# Generate deployment files only
nuxfly generate

Commands

nuxfly launch <name>

Create and configure a new Nuxt application with Fly.io deployment setup.

Options:

  • --template <template> - Project template (default: "default")
  • --region <region> - Fly.io region (default: "iad")
  • --no-database - Skip database setup
  • --no-storage - Skip storage setup

nuxfly deploy

Deploy your application to Fly.io with automatic infrastructure provisioning.

Options:

  • --build-only - Only build, don't deploy
  • --no-cache - Disable build cache
  • --strategy <strategy> - Deployment strategy

nuxfly generate

Generate Fly.io deployment configuration files.

Options:

  • --force - Overwrite existing files
  • --template <template> - Configuration template

nuxfly studio

Launch Drizzle Studio for database management.

Options:

  • --port <port> - Studio port (default: 4983)
  • --host <host> - Studio host (default: "localhost")

nuxfly import <app-name>

Import an existing Fly.io application and set up local development.

nuxfly proxy <command>

Proxy commands to flyctl with nuxfly context.

Requirements

  • Node.js 18+
  • Fly.io account and flyctl installed
  • Git (for project creation)

Documentation

For detailed documentation, visit: nuxfly documentation

License

MIT