Systems | Development | Analytics | API | Testing

Latest Posts

API Summit 2023 Recap

API Summit 2023 is a wrap! Over the two-day conference (our sixth-annual event), we packed in over 40 hours of content in 100 sessions touching on everything from ensuring reliable connectivity to generative AI. We heard from investors about the future of APIs, as well as stories from users and customers from all over the world. And, of course, we also had plenty of Kong-related news to share. Here are some of the highlights from the event and a round-up of all the Kong news dropped this week.

An Introduction to Apache Kafka Consumer Group Strategy

Ever dealt with a misbehaving consumer group? Imbalanced broker load? This could be due to your consumer group and partitioning strategy! Once, on a dark and stormy night, I set myself up for this error. I was creating an application to demonstrate how you can use Apache Kafka® to decouple microservices. The function of my “microservices” was to create latte objects for a restaurant ordering service.

100 Test Cases For Banking Application (With Template + Complete Guide)

Banking is a critical but highly complex industry. It is a highly regulated environment, and banking applications must be developed in compliance with privacy and security standards of the region the bank operates. Credibility is an invaluable asset to any financial institution, so they can’t afford to let any bugs, even the most minor, slip into production and impact the user experience.

Business Process Management Tools: 13 Features to Look For

Every organization, big and small, relies on processes to get work done. Processes are the backbone of your success. But if left unchecked, your processes can spin out of control. That’s why business process management (BPM) tools are so essential. They provide a wide range of coverage to help you develop, automate, optimize, and orchestrate efficient processes.

The Definitive Guide to Date and Time in JavaScript

There are now nearly 9 million apps worldwide, and practically all of them run on an internal clock. Financial apps are built on timestamped data. Office apps run on calendars. Social apps are defined by their feeds, timelines and anniversaries. So, as devs, we need to know how to compute date and time. JavaScript, the world’s most popular programming language, has plenty of helpful APIs, but they can throw up complications if you’ve never used them before.

Choosing the right WebSocket library for React projects

As users now expect applications to provide instant updates, live chats, and dynamic content, modern web development requires the ability to deliver realtime experiences and communication between users and servers. WebSocket is a communication protocol that allows full-duplex two-way communication between a client and a server over a single TCP connection. The connection persists unless it is explicitly told to disconnect or in case of network or server failure.

Why Eyefinity Chooses Ghost Inspector Over Every Other Test-Building Software [Case Study]

For the past 30 years, Eyefinity has been a leader in cloud-based software and technology tailored to the vision care industry. Eyefinity offers reliable patient care solutions for ophthalmologists and optometrists, with a client base in over 20,000 offices across the US. As a company dedicated to providing the most seamless customer experience for doctor and client, Eyefinity knows that Quality Assurance is paramount to maintaining.

Kong Insomnia 8.0 Adds Scratch Pad, Real-Time Collaboration, Enterprise SSO, AI-Generated Testing

After 12 months of hard work, we’re excited to announce the biggest release of Kong Insomnia that we have ever seen: Kong Insomnia 8.0, significantly rebuilt from the ground up and available today in GA. You can get started for free on insomnia.rest. Announced today at API Summit 2023, Kong Insomnia 8.0 introduces hundreds of new improvements and features that will dramatically increase developer productivity when creating, testing, and debugging any API.

PHP Try Catch: Basics & Advanced PHP Exception Handling Tutorial

When PHP version 5 was released, it incorporated a built-in model to catch errors and exceptions. Handling errors in PHP with try catch blocks is almost the same as handling errors in other programming languages. When a PHP exception is thrown, the PHP runtime looks for a catch statement that can handle that type of exception. It will continue checking the calling methods up the stack trace until a catch statement is found.