Systems | Development | Analytics | API | Testing

Federated Configuration Management at Scale with decK

decK is a wonderful tool for managing Kong Gateway configuration declaratively, but before you know it you find yourself editing a 1000 line long YAML file that is is hard to manage. In this call, Michael will take you through the techniques used by some of Kong's biggest users to split their configuration files in to manageable chunks. There will be slides, there will be documentation, and as always, there will be demos.

Kong Insomnia 11: Elevating API Security and Collaboration

We’re excited to announce the general availability of Kong Insomnia 11! This release introduces third-party vault integrations for enhanced security, an all-new Git sync experience for more seamless collaboration, and support for multi-tabs to improve efficiency within the Insomnia application. Keep reading to learn more.

Node.js Now Supports TypeScript Natively: Everything You Need to Know

With the release of Node.js v23.6.0, developers can now use TypeScript natively without additional transpilation tools like ts-node or manual compilation steps. This milestone significantly streamlines development workflows, simplifying build processes and improving the overall developer experience by reducing complexity.

Getting Started with Dialyzer in Elixir

Dialyzer (DIscrepancy AnaLYZer for ERlang programs) is a powerful static analysis tool that helps developers identify potential issues in their Elixir code without executing it. It excels at finding type mismatches, unreachable code, and unnecessary functions through sophisticated flow analysis. In part one of this two-part series, we'll first get to grips with the basics of Dialyzer. In part two, we'll examine more advanced use cases.

5 Enterprise AI Trends You Need to Know

The era of AI experimentation is over. Organizations want to see ROI. And they will—as long as they understand that the competitive edge isn’t in AI itself. With AI evolving rapidly, businesses need a clear strategy that cuts through the noise and generates ROI. This key strategy is to embed AI into core business processes. This post will cover five enterprise AI trends for the new era of AI and why process is the key to ROI. The most talked-about trend today is agentic AI.

P4 One: Intuitive Version Control for Designers and Artists

Now introducing P4 One, an intuitive version control client designed for artists and creators working with images, 3D models, videos, and other binary assets. If you’re already using P4 (formerly Helix Core) but looking for more intuitive version control for your artists and designers, P4 One fills the gap. It’s the easiest way to introduce your art teams to version control, eliminate rework, and let your art teams submit their work directly to the same version control your team is already using.

AI Gateway: Centralized Management for Secure, Localized AI Prompts

Unlock the full potential of your AI by optimizing prompt management. In this concise demo, discover how Kong AI Gateway provides a centralized, secure solution for prompt management, significantly enhancing AI consistency and security. Key features demonstrated: Prompt Jailbreak Prevention: Stop misuse and protect AI integrity. Centralized Policy Enforcement: Ensure consistency across distributed teams. Effortless Localization: Streamline prompt translations without additional development overhead. Take control of your prompts and optimize your AI interactions efficiently with Kong AI Gateway.

Safeguarding Enterprise AI with Kong's Prompt Guard

Protect your enterprise AI from misuse and safeguard sensitive data effortlessly. In this concise demo, you'll learn how Kong Inc. helps organizations enforce powerful security guardrails around AI interactions. Key highlights include: AI Prompt Guard: Set precise rules to allow or block specific prompts. AI Semantic Prompt Guard: Go beyond simple rules by using AI to understand and intelligently filter prompts based on their semantic meaning. Enhance your AI security strategy and confidently mitigate risks with Kong.

WSO2 Choreo + Moesif API Analytics: Optimize API Performance And Drive Adoption

As developers, we know how essential APIs have become in building modern software systems, from internal services to public-facing products at scale. We spend countless hours crafting elegant code, meticulously designing interfaces, and ensuring everything should work flawlessly. And, we must ship these services fast to stay competitive. But what happens after deployment? In reality, even the most beautifully crafted API can fall flat without deep insight into its real-world usage.

How to Throw Exceptions in C++ Constructors Correctly

In C++, when you create a new object (like a database connection or a game character), a special function called a constructor runs automatically to set up that object. Think of constructors as the "birth" process for objects—they allocate resources, set initial values, and make sure the object starts life in a valid state. But what happens when something goes wrong during this setup? Maybe a file can't be opened, a network connection fails, or invalid data is provided.