Alternatives
Products that do what Xleak – Terminal Excel viewer with interactive TUI and search does
Hi HN! I just released xleak, a terminal-based Excel viewer written in Rust. I was inspired by working with spreadsheets and word documents on the command line and wanted something faster than opening Excel/LibreOffice. It supports .xlsx, .xls, .xlsm, .xlsb, and .ods files. Key features: - Interactive TUI with full keyboard navigation (vim-style search with / and n/N) - View Excel formulas in cells - Copy cells/rows to clipboard - Export to CSV, JSON, or text - Lazy loading for large files (1000+ rows) - Jump to any cell (e.g., "A100", "500", or "10,5") Built with the…
- 1AT
While speccing out this spreadsheet tool, I realized that I never had to think about the keybindings. It all just came naturally from Vim. Normal/insert/visual modes, hjkl navigation, dd/yy/p, :w, :q. The usual muscle memory works. It supports CSV/TSV import and export, and a native .cell format that preserves formulas. The formula engine handles SUM, AVERAGE, COUNT, MIN, MAX, and IF with range references. The codebase is a Cargo workspace: a pure cell-sheet-core library (no TUI dependency) and a cell-sheet-tui crate on top of ratatui. Early days, but it's usable. To…
Apr 2026 · github.com
- 2IV
The project is called QueryStorm. It uses Roslyn to offer C# (and VB.NET) support in Excel, as an alternative to VBA. I've posted about it before, but a lot has changed since then so figured I'd share an update. The current version includes a host of new features, namely a C# debugger, support for NuGet packages, and the ability to publish Excel extensions to an "AppStore" (which is essentially a NuGet repository). The AppStore can be used by anyone with the (free) runtime component. Another great addition is the community license, which is a free license for individuals and small companies…
2023 · querystorm.com
- 3DT
I got tired of open file.docx → wait 8 seconds → close Word just to read a document, so I built a terminal-native Word viewer! What it does: * View `.docx` files directly in your terminal with (mostly) proper formatting * Tables actually look like tables (with Unicode borders!) * Nested lists work correctly with indentation * Full-text search with highlighting * Copy content straight to clipboard with `c` * Export to markdown/CSV/JSON Why I made this: Working on servers over SSH, I constantly hit Word docs I needed to check quickly. The existing solutions I'm aware of either strip…
2025 · github.com
- 4

- 5

- 6DA
Hi there, I tried to build a CLI tool to edit and visualize Excel/CSV files directly in the terminal, I called it "dss". I did it for fun to tweak spreadsheet formulas without leaving my terminal or opening heavy GUI apps. It is an interactive editor of sheets with charts and formula engine diretly in TUI. The formula engine is handmaded but I'd like to improve it. I copied a lot from my previous Datacmd project and from Termdash repo. Hoping to receive some feedback.
Apr 2026 · github.com
- 7QO
Hi, I am David Kircos. The Founder of Quadratic (https://QuadraticHQ.com), an open-source spreadsheet application that supports Python, SQL (coming soon), AI Prompts, and classic Formulas. Unlike other spreadsheets, Quadratic has an infinite canvas (like Figma). As a result, you can pinch and zoom to navigate large data sets, and everything renders smoothly at 60fps. Our vision is to build a place where your team can collaborate on data analysis. You can write Python, AI Prompts, and Formulas in one spreadsheet feeding each other data and updating automatically. Quadratic is built…
2023 · quadratichq.com
- 8TQ
2025 · textquery.app
- 9TC
2022 · github.com
- 10

- 11

- 12

- 13FA
I built a visual editor that represents Excel formulas as blocks, making it easier to inspect, refactor, and reason about complex formulas structurally. Frockly is not an Excel replacement. It focuses on understanding and refactoring formulas before bringing them back to Excel. Demo: https://ryuu12358.github.io/Frockly/ GitHub: https://github.com/ryuu12358/Frockly Write-up: https://note.com/ryuu12358/n/naa65d9d5facd (Japanese)
Dec 2025
- 14SS
2021 · github.com
- 15ET
We (me and @aarondia) built a tool to help you turn psuedo-software Excel files into real-software Python. Ideally, Pyoneer helps you automate your manual Excel processes. You can try it today here: https://pyoneer.ai. How it works: 1. You upload an Excel file 2. We statically parse the Excel file and build a dependency graph of all the cells, tables, formulas, and pivots. 3. We do a graph traversal, and translate nodes as we hit them. We use OpenAI APIs to translate formulas. There’s a bunch of extra work here — because even with the best prompt engineering a fella like me can do,…
2024 · pyoneer.ai
- 16HI
2013 · datanitro.com
- 17IE
Last month, I started learning a Python TUI framework called Textual. After working on a 4x4 board game, I made an interactive app to test your CLI text processing skills with 40 beginner to intermediate level exercises. The app is fairly basic in terms of features — only single input file, so no stdin data, multiple files, etc. Most of the exercises in this app is based on my Computing from the Command Line ebook (https://learnbyexample.github.io/cli-computing/preface.html). I hope to improve the TUI app to support all the 200+ exercises sometime next year.
2022 · github.com
- 18OS
I remember the days of MS-DOS's README.COM and I thought of coding something similar in C for GNU/Linux terminals. Repository: https://github.com/velorek1/fread
2025 · youtube.com
- 19
Entendo▲61Turn plain-language questions into live chart & analysis
Apr 2026 · entendo.sozodata.com.br
- 20OT
i always loved looking up the On-Line Encyclopedia of Integer Sequences (OEIS) when researching a sequence of numbers. so I decided to make a TUI and CLI for it so that I can browse sequences in the terminal. it supports almost all the features on the site (including the OEIS Webcam) and supports graphs, a preview pane, exporting and bookmarks. more features here: https://github.com/hako/oeis-tui?tab=readme-ov-file#features repo: https://github.com/hako/oeis-tui gitHub releases: https://github.com/hako/oeis-tui/releases cargo:…
Nov 2025 · github.com
- 21PC
2024 · github.com
- 22RC
2021 · recast.amplication.com
- 23AT
Hi HN, I built a simple TUI for viewing and editing .md files in the terminal. More and more markdown files keep appearing in our projects, and I found myself needing a quick way to view(with syntax highlighting) and edit them without leaving the terminal, so I built this
Apr 2026 · mdee.bkh.dev
- 24LR
Hey HN, I built libreoffice-rs: a pure-Rust, std-only library + CLI for reading, writing, converting, and rendering office documents — with *zero* LibreOffice, Java, or C dependencies. 100x faster... I know, I know. It supports DOCX, XLSX, PPTX, ODT/ODS/ODP, PDF, Markdown, CSV, HTML, SVG, and more. The CLI is designed to feel familiar: ```bash cargo install libreoffice-pure # soffice-style usage libreoffice-pure --headless --convert-to pdf report.docx libreoffice-pure --headless --convert-to csv spreadsheet.xlsx # Markdown extraction libreoffice-pure docx-to-md report.docx…
May 2026 · github.com
Ranked by how close each launch is in meaning, then by votes. Refine with a description →