JavaScript articles

Brought to you by Honeybadger—simple application monitoring that helps developers move fast and fix things.

A comprehensive guide to error handling In Node.js

Errors happen in every application. Devs have to decide: do you write code to handle the error? Suppress it? Notify the user? Report it to the team? In this article, Ayo Isaiah walks us through every aspect of the JavaScript error system. He'll show us how to work with errors and discuss appropriate choices for real-world scenarios.

Building a gRPC Node.js API

Building gRPC Node.js applications has become a popular choice because of its performance and scalability. gRPC provides many benefits over traditional REST-based services, such as faster response times, better performance, and simpler code structure. Read this comprehensive guide to learn how to build a gRPC server using Node.js.

Server-side JavaScript logging

Logging is an important aspect of software development that is often overlooked. Developers rely on logs to diagnose errors when things go wrong and understand the behavior of their applications. Dig in today to learn how server-side JavaScript logging works and even some best practices!

Serialization and deserialization in Node.js

Let's explore various serialization formats, delve into practical implementation techniques, uncover best practices, and examine real-world use cases. By the end of this article, you'll have the knowledge and skills to effectively manage data in Node.js, making it work for your application as expected.

The character encoding cheat sheet for JS developers

Character encoding is a critical aspect of JavaScript development on both the frontend and backend. In this article, we'll explore the basics of character encoding, its importance, and how it affects data rendering on your web pages. We'll also discuss best practices and common pitfalls to help you avoid encoding-related issues in your projects.