Systems | Development | Analytics | API | Testing

Latest News

Write Clean And Efficient Table Driven Unit Tests In Go

Table driven tests, also known as parameterized tests, have became very popular over the past few years, due to their ability to eliminate repetition. Table driven tests make it quite a bit easier to re-use the same values for different sets of tests by just moving the table outside of the scope of the test function. Different tests may benefit from the same input, and each test may have completely different configration, concurrency etc…

Keeping Your APIs Safe: Best Practices for Top-Notch Security

Application programming interfaces (APIs) are everywhere, and they play a role in running nearly everything in our digital-centric lives. Each time we launch a web page or an app on our phone, dozens of API calls are happening in the background to render an experience heavily customized to you. Increasingly, even the everyday items in your home are talking to APIs — from smart speakers like Amazon Echo to appliances, electricity meters, and lightbulbs.

Integrating with Microsoft Graph API - Creating a Calendar Event

Microsoft Graph API allows developers to access data and services across a wide range of Microsoft cloud services. Admittedly setting up permissions and security can be challenging, but once that is sorted, you will be able to access Microsoft services such as Office365, Outlook and Azure. Calling the Graph API with Linx allows you to efficiently automate tasks, or integrate with Microsoft products to ensure that functionality and data is accessible by your other systems.

What is API Testing? A Complete Guide To Test APIs

APIs are the backbone of the digital world. Every time you use an application such as Facebook or Instagram, or even check the weather, it is likely that some APIs are at work. They are the middleman of apps and web services, and API testing is crucial to ensure that this middleman works seamlessly. In this article, we’ll explore the concept of API testing in depth. We’ll also show you how easy and simple it is to automate API testing with just a few steps.

Step-by-Step Blueprint to Create RESTful APIs for Efficient Web Services

Creating RESTful APIs is essential for efficient web service development. With this article, you’ll learn to create restful apis using Node.js and Express by following a concise, step-by-step approach designed for real-world application. From server setup to endpoint creation and securing data, we’ve got you covered. This comprehensive guide will ensure you grasp the fundamentals while also diving into the more nuanced aspects of RESTful API development.

Introduction to Unified Data: What Is It and Why Is It Important

Terence Bennett - April 9, 2024 Today’s businesses rely on data to operate. Everything from collecting customer data to recording data points from business processes contributes to reaching goals. Big data doesn’t mean much, though, when you keep it separated in silos. When you unify data, you create more data analytics opportunities that lead to valuable insights.

How to Manage Your Kubernetes Services with an API Gateway

Kubernetes is an open-source container orchestration system for automating deployment, scaling, and management of containerized applications. It groups containers into logical units for easy management and discovery. API gateways sit between clients and microservices. They act as a reverse proxy to accept all API calls, then route and transform requests to appropriate microservice.