Image 1 — Nouto: A JSON Viewer for VS Code with tree view, table view, and fetch from URL
Image 2 — Nouto: A JSON Viewer for VS Code with tree view, table view, and fetch from URL
Image 3 — Nouto: A JSON Viewer for VS Code with tree view, table view, and fetch from URL
▲ 73 r/devtools+2 crossposts

Nouto: A JSON Viewer for VS Code with tree view, table view, and fetch from URL

I built a JSON viewer extension for VS Code. It allows you to paste JSON, open a file, or fetch directly from an HTTP endpoint, then browse it as a collapsible tree or view arrays of objects as a sortable, resizable table with column pinning and CSV export.

Also has fuzzy search, JSONPath filtering, a query filter language, compare/diff, JSON Schema validation, bookmarks, pinned nodes, embedded JSON detection, and copy in multiple formats (JSON, YAML, CSV, TypeScript, Python, etc). Handles JSONL/NDJSON files too.

Free and open source.

https://marketplace.visualstudio.com/items?itemName=frostybee-dev.nouto-json-explorer

Happy to hear feedback or feature requests.

u/Cheap-Try-8796 — 6 days ago
▲ 7 r/gohugo

Dark/light syntax highlighting in Hugo without two Chroma stylesheets: a post-build tool

I built a tool that addresses a few things that come up here regularly: syntax highlighting that follows dark/light mode, theme CSS bleeding into code blocks, and hand-rolling copy-to-clipboard buttons. If you've ever generated two Chroma stylesheets and fought your theme's specificity to make dark mode work, that's the itch this scratches.

Kazari is a Go library and CLI that upgrades code blocks into framed, highlighted blocks with copy buttons, line numbers, collapsible sections, and dual light/dark themes. The dark mode part is what I think this community will care about most: both themes are baked into the HTML as CSS custom properties at build time, so switching is pure CSS. No second stylesheet, no running hugo gen chromastyles twice, no flash on toggle or page load, no JavaScript involved in the switch.

The Hugo integration needs zero changes to your theme or pipeline:
hugo --minify
kazari process ./public

kazari process walks the built HTML and rewrites the code blocks in place. Everything else on the page is untouched, and running it twice is a no-op, so it's safe as an unconditional build step. It reads Chroma's output fine and translates hl_lines to line markers. An optional one-file render hook unlocks per-block options straight from the fence (titles, marked ranges, focus lines, collapse ranges):

```go {title="main.go" mark="3-5"}```

Highlighting is done by Nuri, a pure Go port of Shiki, so you get TextMate grammars and real VS Code themes rather than Chroma's lexers, with no Node in the pipeline. Any Shiki theme name works: github-dark, dracula, catppuccin-mocha, one-dark-pro, and so on. There are 65 bundled themes, and you can browse them all side by side here: https://frostybee.github.io/kazari/docs/styling/theme-gallery/

Live example (a small Hugo site, already processed): https://frostybee.github.io/kazari/examples/hugo/

Docs and the Hugo guide: https://frostybee.github.io/kazari/

Happy to answer questions about how the HTML rewriting works.

u/Cheap-Try-8796 — 9 days ago
▲ 10 r/gohugo

A Hugo module for inlining SVG icons from any Iconify set

I am sharing a Hugo module that lets you drop SVG icons into your templates and Markdown with a set of manipulation options (resize, rotate, flip, color, opacity, accessibility labels, etc.), all at build time requiring zero JavaScript.

It works with any Iconify icon set (Tabler, Heroicons, Font Awesome, Material Design, Simple Icons, and 200+ others). You use a small CLI to export only the icons you actually need as SVG files, then reference them in your templates or via a shortcode:

{{ partial "swarm-icon/icon.html" "tabler:home" }}

or in Markdown:

{{< icon "tabler:home" size="24" fill="red" >}}

Here are some characteristics of this module:
- Only the icons you export end up in your site. No icon fonts, no sprite sheets loading hundreds of unused glyphs.
- Set one dimension and the other scales from the aspect ratio, so non-square icons don't get squished.
- Decorative icons get aria-hidden/focusable="false" automatically. Add a title param and it switches to role="img" with a proper <title> element.
- If you reference an icon you forgot to export, Hugo tells you exactly which CLI command to run. No silent broken images.
- The companion CLI is a single Go binary. No Node, no npm.

There's a live demo with an interactive playground where you can mess with all the parameters: https://frostybee.github.io/hugo-swarm-icons/

Repo: https://github.com/frostybee/hugo-swarm-icons

Companion CLI: https://github.com/frostybee/go-swarm-icons

Would love to hear what you think or if you run into any issues. Happy to answer questions.

reddit.com
u/Cheap-Try-8796 — 10 days ago

Can we have another one-week extension for using Fable 5?

Hey Anthropic, I know you read our reddit posts.

Can we please have another one-week extension? I don't like comparing you to OpenAI, but I know you can do better.

Thanks.

reddit.com
u/Cheap-Try-8796 — 1 month ago