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

@flui-cloud/cli

v0.2.0

Published

Command-line interface for Flui — the open-source platform to deploy applications across cloud providers and your own servers.

Readme

@flui-cloud/cli

Command-line interface for Flui — the open platform layer on top of your cloud provider. Create clusters, deploy applications from a flui.yaml manifest, switch between installations, and operate the lifecycle end to end from one binary.

Full reference: docs.flui.cloud/cli.

Install

npm install -g @flui-cloud/cli       # or: pnpm add -g, yarn global add
flui --version

To upgrade later, run flui update — it self-replaces the global install with the latest published version.

Quickstart

Flui is a modern, multi-cloud platform layer that turns plain cloud servers into a full application platform — you keep ownership of the infrastructure, no vendor lock-in. Create your installation in one interactive command — it asks for an admin email and a credential for one of the supported cloud providers (Hetzner and Scaleway today; more providers and bring-your-own-server installs on the roadmap), then in a few minutes returns an environment ready to host applications: cluster, ingress, TLS, identity, observability, dashboard — already wired in.

flui env create

The command streams the install logs until the platform is reachable, then prints the dashboard, API and OIDC URLs. The full walkthrough lives at Getting started.

What you can do next

Once the cluster is up, plenty works without any extra integration — day-to-day operating the installation, inspecting resources, and deploying pre-built apps:

flui auth login                              # OIDC against the freshly created installation

flui env status                              # control-cluster health, nodes, capacity
flui env credentials --test                  # print + probe the dashboard / API / OIDC / Grafana URLs

flui app list                                # all apps on the installation
flui app status <name>                       # rollout state, replicas, image
flui app logs <name> --tail 200              # recent logs
flui app metrics <name>                      # CPU / memory / network

flui deploy                                  # deploy a flui.yaml from the current directory

For source-built apps (kind: Application, built from a GitHub repo) you also need to install the Flui GitHub App and save a GHCR PAT first — see Integrations. Pre-built CatalogApps (kind: CatalogApp) skip all of that and deploy straight from flui deploy against any public image registry. The manifest reference is on Deploy.

Topics

Commands are grouped into topics; each verb has its own --help.

| Topic | What it does | | --- | --- | | env | Lifecycle of the control cluster — create, inspect, scale, destroy. | | cluster / node | Workload-cluster destroy and worker-node add/remove/list. | | app | Inspect, scale, restart, snapshot, redeploy, and delete applications; read logs, metrics, and crash reports. | | deploy / catalog | Deploy from a flui.yaml manifest; validate the manifest offline. | | integration / repo | Connect the Flui GitHub App, save a GHCR PAT, and import repositories — prerequisites for the first source-built deploy. | | template | Create a new repository from a Flui framework template. | | backup | Manage backup destinations, policies, jobs, and restores. | | auth | OIDC login and long-lived M2M API keys. | | context / config | Profiles (isolated installations) and layered configuration. | | server-types / ssh | List provider server sizes; SSH into a node. | | dev | Helpers for Flui contributors (export secrets, SSH tunnel). | | dns / reconcile / update | Maintenance utilities. |

Per-topic reference pages: see docs.flui.cloud/cli.

Common conventions

A handful of flags recur across the CLI:

  • -c, --cluster <name|id> — target cluster explicitly. Auto-detected when only one is present.
  • -o, --output <format>json is always available for scripting; the human format is text or table depending on the command.
  • --no-wait / --detach — return as soon as the job is queued.
  • -f, --force / -y, --yes — skip confirmation on destructive operations.
  • --dry-run — print what would happen on a subset of mutating commands.

Commands that talk to the API print a short context banner before running (active profile + API URL).

Profiles on disk

The CLI keeps each installation's state under ~/.flui/profiles/<name>/. A profile holds the API token, the encrypted credentials needed to talk to the provider, the SSH CA used for cluster nodes, and the local inventory the profile knows about. The path can be moved with the FLUI_DIR environment variable.

Switching between installations: flui context use <name>.

Links

License

AGPL-3.0-or-later. See LICENSE.