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

@antoinegtir/flutter-cli

v0.3.0

Published

Modern terminal UI for Flutter — hot reload across N devices, live HTTP/perf inspector, drops into your shell so 'flutter run' becomes the dashboard.

Readme

flutter-cliflutter run, but with superpowers

npm version npm downloads CI License: MIT GitHub stars

A modern terminal UI for Flutter — hot reload across N devices, live HTTP / perf inspector, inline scrollback. Drops into your shell so flutter run becomes the dashboard. No new command to learn.

flutter-cli landing

Install

# Zero install — just run it.
npx @antoinegtir/flutter-cli run

# Or global.
npm install -g @antoinegtir/flutter-cli
flutter-cli run

On install, the right prebuilt binary for your platform is fetched from GitHub Releases. Set FLUTTER_CLI_SKIP_DOWNLOAD=1 to skip it (useful in CI / Docker layers).

| Supported | | |---|---| | macOS | arm64 + x86_64 | | Linux | arm64 + x86_64 (glibc) | | Windows | arm64 + x86_64 (msvc) |

Why

flutter run was written for one device, one developer, one terminal. In 2025 you're probably:

  • Testing on 2+ devices simultaneously (iOS, Android, simulator).
  • Watching FPS, memory, jank ratios — not just compile errors.
  • Drowning in 50,000 lines of scrollback per session.
  • Re-typing the same flutter run --device emulator-5554 --flavor prod for the hundredth time.

Same project, same flutter binary underneath, dramatically better feedback loop.

| | vanilla flutter run | with flutter-cli | |---|---|---| | Multi-device hot reload | one at a time | parallel, single r | | Per-device FPS / memory | no | yes, live sparklines | | Inline TUI (scrollback preserved) | no | yes | | Live HTTP inspector | DevTools-only | n keystroke, in your terminal | | Side-by-side screenshots | per-platform tooling | s keystroke, all devices | | Open DevTools | copy URL manually | d keystroke | | Skip the TUI when you need | n/a | --basic flag |

Keys at a glance

r reload · R restart · b brightness · p debug paint · P perf overlay · o platform · s screenshot · n network · d DevTools · / filter · c copy · q quit

Want the shell shim?

Want flutter run (not flutter-cli run) to fire the TUI directly? Add this one line to your shell config:

# bash / zsh
eval "$(flutter-cli init bash)"   # or zsh
# fish
flutter-cli init fish | source

After reloading your shell, the literal command flutter run is intercepted by the TUI. flutter pub, flutter doctor, flutter clean and everything we don't enhance pass through to the real flutter binary unchanged. Your IDE keeps using vanilla flutter — the shim only fires in your terminal.

Full docs

Screenshots, every key binding, the multi-device picker, the network inspector, integration test workflows, the --basic passthrough flag, contributing guide and roadmap all live in the main repo.

➡️ github.com/Antoinegtir/flutter-cli

License

MIT.