A take on Go Style Error Handling in JavaScript
Almost everyone who uses JavaScript daily knows that try-catch can be painful to deal with, especially when you have more than one error to handle.
Most proposed solutions are tryng to copy Golang's approach - which handles everything as return values. It is, among other things, is a great feature of Go, but JS is completely different language (duh) and I think we can do better than a copy-paste from Go.
In Go, when we want to handle an error, we return it from the function call either as a second value in tuple or as return value of the function call. Following is the pattern:
result, error := DoSomething() if error != nil { // handle error }
This approach allows to handle the errors explicitly using standard control flow.
To apply this pattern in javascript the most common solution is to return results as an array:
const handler = async (promise) => { try { const result = await promise() return [result, null]; } catch(error) { return [null, error]; } } const [response, error] = await handle(fetch('http://go.gl')) if (error !== null) { // handle error }
As you can see this is almost direct copy-paste of the pattern from Go.
Returning consistent value
This pattern works great, but in javascript we can do better than this. The core idea of this pattern is to return error as a value, so let's adapt it with better SoC.
Instead of returning null or Error we can decorate the result with a consistent interface. That would improve our SoC, and give us a strongly typed return value:
interface Status { Ok(): boolean; Fail(): boolean; Of(cls: any): boolean; }
The interface Status doesn't have to be an Error, but we can check it's type using status.Of(Error). We can always return an object that sattisfies Status. The usage example would be:
const [response, error] = await handle(res.json()) if (error.Of(SyntaxError)) { // handle error console.log("not a json") return }
Now, in JavaScript our result doesn't always have to be a tuple. We can actually create our own class that behaves as a tuple when it's needed:
interface IResult<T> { 0: T; 1: Status; value: T; status: Status; Of(cls: any): boolean; Ok(): boolean; Fail(): boolean; }
Usage example:
const result = await handle(res.value.json()) if (result.Of(SyntaxError)) { // handle error console.log("not a json") return }
The Implementation
Following this approach I've created ready to use function - Grip.
Grip is strongly typed and can decorate functions and promisises alike.
I use git to host such packages, so to install use github:
bun add github:nesterow/grip # or pnpm
Usage:
The grip function accepts a function or a promise and returns a result with return value and status.
The result can be hadled as either an object or a tuple.
import { grip } from '@nesterow/grip';
Handle result as an object:
The result can be handled as an object: {value, status, Ok(), Fail(), Of(type)}
const res = await grip( fetch('https://api.example.com') ); if (res.Fail()) { handleErrorProperly(); return; } const json = await grip( res.value.json() ); if (json.Of(SyntaxError)) { handleJsonParseError(); return; }
Handle result as a tuple:
The result can also be received as a tuple if you want to handle errors in Go'ish style:
const [res, fetchStatus] = await grip( fetch('https://api.example.com') ); if (fetchStatus.Fail()) { handleErrorProperly(); return; } const [json, parseStatus] = await grip( res.json() ); if (parseStatus.Of(SyntaxError)) { handleJsonParseError(); return; }
If you like this take on error handling check out the repository. The source is about 50LOC, without types, and a 100 with types.
The above is the detailed content of A take on Go Style Error Handling in JavaScript. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Frequently Asked Questions and Solutions for Front-end Thermal Paper Ticket Printing In Front-end Development, Ticket Printing is a common requirement. However, many developers are implementing...

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

There is no absolute salary for Python and JavaScript developers, depending on skills and industry needs. 1. Python may be paid more in data science and machine learning. 2. JavaScript has great demand in front-end and full-stack development, and its salary is also considerable. 3. Influencing factors include experience, geographical location, company size and specific skills.

Discussion on the realization of parallax scrolling and element animation effects in this article will explore how to achieve similar to Shiseido official website (https://www.shiseido.co.jp/sb/wonderland/)...

Learning JavaScript is not difficult, but it is challenging. 1) Understand basic concepts such as variables, data types, functions, etc. 2) Master asynchronous programming and implement it through event loops. 3) Use DOM operations and Promise to handle asynchronous requests. 4) Avoid common mistakes and use debugging techniques. 5) Optimize performance and follow best practices.

The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.

How to merge array elements with the same ID into one object in JavaScript? When processing data, we often encounter the need to have the same ID...

Explore the implementation of panel drag and drop adjustment function similar to VSCode in the front-end. In front-end development, how to implement VSCode similar to VSCode...
