Systems | Development | Analytics | API | Testing

End-to-End API Monetization with NodeJS, Stripe, and Moesif

Many API developers and companies struggle to find ways to easily set up systems to monetize their APIs. Some are simple but not customizable, some are complex and require massive engineering effort to actually get it all running. To make things easier, Moesif created a feature a few months ago called Billing Meters which gives massive customizability but with a minimal amount of code and engineering effort.

What Is ETL, and Why Should Ecommerce Businesses Use It?

Here are five things to know about ETL and how it benefits your Ecommerce business: Think about all the data that exists in your Ecommerce business. That might include customer data, inventory data, sales data, advertising data, and social media data. Now think about all the software and systems that store that data. These might include transactional databases, relational databases, customer relationship management (CRM) systems, enterprise resource planning (ERP) systems, and SaaS tools.

Worker Threads Monitoring in N|Solid [6/10] The best APM for Node, layer by layer.

One of the more popular ways for developers to use Node.js is to leverage Worker Threads. Workers (threads) are useful for performing CPU-intensive JavaScript operations, according to the official documentation. They have proven to be the best solution for CPU performance due to the following features.

The Human Side of the Equation - How Stories Bring Data to Life (Part 1)

As data science has taken center stage in a lot of organizations, many are relearning what they’ve already known – that dry, mathematical calculations don’t inspire and don’t stick. It’s the story that matters. In this first of a two-part blog series, we look at the history and neuroscience of storytelling and how it can help us understand data at a more human level.

Establish a Code Ownership Loop with Collaborator and Bugsnag

This blog is derived from the webinar, “Accelerate Releases Through Code Ownership with Collaborator and Bugsnag”, focused on establishing a culture of code ownership and its benefits through the lens of the SmartBear tools Collaborator and Bugsnag. Taking a line from the SmartBear 2021 Annual State of Software Quality Report: "Quality is top of the mind for every individual and every team.

Safety and Security for Medical Devices with New U.S. House of Representatives Legislation

Inspired by an article from Jim Dempsey, lecturer at the UC Berkeley Law School and a senior policy advisor at the Stanford Cyber Policy Center, I decided to write about the recent legislation approved by the U.S. House of Representatives to address cybersecurity for medical devices and how it relates to open source software security, secure code standards, and static analysis.

Understanding Type Checking in JavaScript Using typeof

In JavaScript, the type checking operator typeof returns the data type of the argument that was supplied to it. Any variable, function, or object whose type you want to determine using the typeof operator can be used as the operand. The typeof operator can be used to check the data type before execution because JavaScript is a dynamically typed language, which means that you do not need to define the type of variables when declaring them.