Is Nushell Worth the Hype?


It was only two weeks ago that I felt like I’m on the bleeding edge of technology after realizing I’ve been ignoring fish shell and decided to give it a go.

The pile of comments mentioning Nushell left me no choice, so today we’re checking it out, and trying to see whether it’s worth the switch, and for whom.

Ever felt frustrated parsing JSON or CSV files in your terminal? I know I did.

The traditional Unix shell treats everything as text streams, making it surprisingly hard to work with modern data formats. So everybody just uses JQ, YQ and other parsers to bridge the gap and that’s the standard. It’s one of these “must have” libraries everyone holds in their dotfiles recipe.

With its 32,000 stars on GitHub, Nushell’s approach is different:

“Rather than thinking of files and data as raw streams of text, Nu looks at each input as something with structure.”
- Nushell docs

This fundamental shift in approach is what makes Nushell fascinating. It treats command outputs as structured data tables instead of raw text. This means you can query your filesystem like a database, parse JSON with native commands, and even interact with SQLite (!!) databases directly from your shell.

The practical benefits become even more clear when get your hands dirty with it:

  1. Structured Data Handling: Instead of piping text between grep and awk, Nushell lets you query data using intuitive commands like where, sort-by, and select. A simple example would be running ls | sort-by modified to instantly sort files by modification date.
  2. Built-in Type System: The shell understands data types out of the box. No more guessing if a variable contains a number or a string. This prevents countless scripting errors before they happen. If you ever tried input validation with bash you should be excited now 😅
  3. Modern Developer Experience:
    • Native JSON/YAML parsing
    • Supported by modern prompts like starship, and tools like Zoxide
    • HTTP requests built into the shell (which you can query directly ❤️‍🔥)
    • SQL database browsing
    • Powerful completions via Carapace:
      After realizing Nu isn’t supported by major tools like Kubernete’s kubectl and AWS CLI, I made my mind to go back to ZSH feeling defeated.
      Being a cross-shell Cobra completion library, Carapace not only made me change my mind (again) with Nushell, but actually took terminal completions to the next level! It magically restored every missing completion I needed and upgraded it in one shot.

Ready to try it out? Here’s a quick start:

  1. Install Nushell using your package manager (yea yea, I use Nix)
  2. Add Starship prompt for familiar territory
  3. Install Carapace for excellent completions
  4. Configure XDG_CONFIG_HOME paths in the default config.nu to make sure the right configuration file is loaded (you can find my config for reference here)

The learning curve exists, but the productivity gains make it worthwhile.

For me, the ability to query JSON APIs directly in the shell and get structured output has been transformative not only for daily DevOps tasks, but also for side projects and standard terminal use.

Is Nushell perfect? No. You’ll hit some compatibility bumps, and certain muscle memory from zsh will need rewiring (no more export key=val it’s now $env.key = val).

But if you work with structured data regularly, the benefits far outweigh the initial adjustment period.

For now, Nushell stays with me. I’ll report back in a few months with updates :)

Whenever you’re ready, here’s how I can help you:

ESPRESSO FRIDAYS

Every once in a while I send hand picked things I've learned. Kind of like your filter to the tech internet. No spam, I promise!

Read more from ESPRESSO FRIDAYS

The Cursor Experience, With Neovim's Magic This issue is brought to you by: Auth0 lets you authenticate 25,000 users for free! Get Started Here! The line between human and AI-assisted coding is becoming increasingly blurred. While VS Code (oh my god I mentioned it) users have been enjoying AI assistance through GitHub Copilot or better yet, “switching” to it’s popular fork - Cursor AI, which creates an “immersive” coding experience by literally having a conversation with the code base. With...

When Mitchell Hashimoto, the creator of Terraform and Vagrant, builds something new, the tech world pays attention. His latest creation, Ghostty, isn’t just another terminal emulator—it’s a reimagining the OS native aspects of terminal emulator which was quite missing until today. “In short, Ghostty 1.0 aims to be the best drop-in replacement for your current terminal emulator on macOS and Linux. Ghostty will be fast, feature-rich, and have a platform-native GUI while being the most...

In a world where online privacy is increasingly under threat, and content is being blocked based on geo-location, many of us turn to paid VPNs for help. But what if I told you there's a better way? Paid VPN services promise security and anonymity, but they come with their own set of problems. You're entrusting your data to a third party, often with unclear logging policies and potential vulnerabilities. Not to mention the recurring costs that can add up over time If you have a bit of...