frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Tell HN: Apple development certificate server seems down?

108•strongpigeon•1d ago•39 comments

X is selling existing users' handles

182•hac•20h ago•87 comments

Ask HN: What Are You Working On? (March 2026)

286•david927•3d ago•1107 comments

Claude 4.6 Opus can recite Linux's list.h

15•itzmetanjim•5h ago•0 comments

LazyFire – a lazygit-style terminal UI for Firebase Firestore

3•egosurffing•6h ago•1 comments

Ask HN: Is Claude down again?

86•coderbants•1d ago•71 comments

AI is supercharging fake work

5•rxm233•7h ago•0 comments

Ask HN: How are people doing AI evals these days?

30•yelmahallawy•2d ago•38 comments

Ask HN: Remember Fidonet?

119•ukkare•2d ago•68 comments

Ask HN: How to be alone?

681•sillysaurusx•4d ago•558 comments

Ask HN: Please restrict new accounts from posting

712•Oras•3d ago•506 comments

Ask HN: Most beautiful personal blog UI you have ever seen?

146•ms7892•3d ago•54 comments

Ask HN: How do we build a new Human First online community in the LLM age?

7•bluefirebrand•17h ago•14 comments

Ask HN: What are you using to mitigate prompt injection?

6•ramoz•18h ago•4 comments

Tell HN: I'm 60 years old. Claude Code has re-ignited a passion

1071•shannoncc•5d ago•980 comments

Ask HN: Can I repurpose a Bluetooth voice remote as input device for a PC?

15•albert_e•4d ago•20 comments

Maybe we can keep on coding? pseudo code project

8•EmptyDrum•1d ago•13 comments

Ask HN: What on this "List of Unsolved Problems in Physics" Has Your Attention?

3•ghastmaster•15h ago•1 comments

IdeaRank – Startup Analysis Engine

2•TMDev•1d ago•0 comments

Ask HN: How do you review gen-AI created code?

6•captainkrtek•1d ago•10 comments

Ask HN: How are people forecasting AI API costs for agent workflows?

5•Barathkanna•1d ago•19 comments

Ask HN: Is GitHub getting less reliable, or is it just me?

13•_pdp_•2d ago•9 comments

Why is GPT-5.4 obsessed with Goblins?

16•pants2•2d ago•11 comments

Happy Birthday YC/HN

6•ellis0n•15h ago•4 comments

Tell HN: Vertical tabs has arrived (behind a flag) in Chrome stable

6•crummy•1d ago•4 comments

Ask HN: Is Starlink still being jammed in Iran?

3•Jblx2•1d ago•1 comments

Ask HN: How to "make it" as a newlygrad/junior?

4•kartoffelsaft•1d ago•14 comments

Ask HN: Does automatic multilingual support make sense for a launch platform?

2•LeanVibe•1d ago•4 comments

Unlocked SaaS, file source as truth?

2•abmmgb•2d ago•1 comments

Ask HN: Anyone else feel this community has changed recently?

62•kypro•5d ago•34 comments
Open in hackernews

LazyFire – a lazygit-style terminal UI for Firebase Firestore

3•egosurffing•6h ago
Hi HN,

I built LazyFire, a terminal UI for Firebase Firestore inspired by lazygit.

I use Firestore a lot, but constantly switching to the Firebase Console to inspect data, run queries, or debug documents was slowing down my workflow. I wanted something that works entirely inside the terminal with keyboard navigation.

LazyFire lets you:

• browse Firestore collections and documents • inspect nested JSON easily • run queries • filter results with jq • navigate everything with vim-style keys • view Cloud Function logs

The goal is to make working with Firestore feel similar to tools like lazygit or k9s.

It's written as a CLI tool and works well if you're already developing from the terminal.

I'd love feedback from other Firebase users: - missing features - workflow improvements - bugs or UX issues

Thanks!

Comments

egosurffing•6h ago
Creator here

One feature people might find interesting is the “Collection Health Scan”.

Firestore has a number of limits that are easy to hit accidentally as a project grows (document size, number of fields, nesting depth, index entry limits, etc.). LazyFire can scan collections and highlight documents that approach or exceed those limits.

I originally built this because debugging Firestore issues in the Firebase Console was slow when working with large collections.

LazyFire also supports: • browsing collections and documents • running queries • jq filtering of results • vim-style keyboard navigation • viewing Cloud Function logs

If anyone here is using Firestore at scale, I’d be curious: - what’s the most annoying thing about the Firebase Console? - are there features missing that would make a terminal tool useful?