If you build backend systems, you probably test your APIs locally using standard .http files right inside your editor. It’s fast, native, and frictionless.
But what happens when you need to know if that same endpoint will survive a massive traffic spike?
Historically, this required a brutal context switch. You had to leave your IDE, boot up a heavy tool like JMeter or k6, and manually rewrite the exact same request from scratch using JavaScript, Python, or XML.
I built Gopher-Glide (gg) to kill that redundancy.
The vision was simple: What if your existing .http files were all you needed to stress-test your architecture? What if load testing wasn't a separate phase of development, but a native extension of the code editor you already live in?
Today, I’m incredibly excited to announce that this vision is a reality. With the latest milestone release—the official launch of the VS Code and Open VSX extensions—Gopher-Glide has officially evolved from a standalone CLI tool into a complete Developer Ecosystem.
The Journey to an Ecosystem
When the core Gopher-Glide engine was first released, the focus was purely on extreme performance. It was built as a lock-free Actor Model in Go that achieves 0 allocs/op on the hot path. This allowed a standard developer laptop to blast 30,000+ RPS without garbage collection pauses destroying the latency percentiles.
But it quickly became apparent that raw speed isn’t enough. Developer Experience (DX) is what actually drives productivity.
So, the ecosystem began to expand. First, a native JetBrains plugin was launched. Today, the official VS Code extension is being released. And because it is also published to the Open VSX Registry, Gopher-Glide now runs natively inside next-gen AI editors like Cursor and VSCodium.
The Workflow: Unprecedented Productivity
By placing the gg engine directly at the heart of the editor, the load-testing workflow fundamentally changes:
Write: Write your API request in a simple .http file.
Execute: Highlight the request in VS Code or JetBrains, and click run.
Visualize: Gopher-Glide opens a beautiful Native UI panel right inside the editor, visualizing the traffic in real-time.
Validate: Standard tools only tell you if an API is slow. Gopher-Glide natively diffs your JSON payloads under load to tell you if the API silently started returning empty arrays when the database got overwhelmed.
Zero context switching. Zero new scripting languages to learn. You never leave your editor.
What this opens up for the future
By tightly coupling a high-performance Go engine with the editor environment, this opens doors that traditional load testing tools simply can't access.
Because gg integrates directly with tools like Cursor, it steps into a future where AI can dynamically generate edge-case payload mutations in .http files, which are immediately executed at scale. Because the core engine remains a standalone binary, the exact same .http files used in the editor today can be executed in CI/CD pipelines tomorrow to catch schema regressions before they merge.
Gopher-Glide is no longer just a traffic generator; it is the heart of a unified API testing ecosystem.
Try it out today
Gopher-Glide is 100% free, open-source, and requires no cloud subscriptions or SaaS accounts. It destroys your servers, not your RAM.
🌐 Explore the documentation: https://gopherglide.dev
💻 VS Code: https://marketplace.visualstudio.com/items?itemName=gopherglide.gg-plugin
💻 Open VSX: https://open-vsx.org/extension/gopherglide/gg-plugin
🚀 JetBrains: https://plugins.jetbrains.com/plugin/30983-gopher-glide
If this workflow resonates with you, I would love to hear your feedback in the comments, or feel free to drop a star on the GitHub repo.
Let's crash some servers! 🚀
Top comments (0)