惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 【当耐特】
小众软件
小众软件
S
SegmentFault 最新的问题
GbyAI
GbyAI
量子位
爱范儿
爱范儿
L
LangChain Blog
Vercel News
Vercel News
A
About on SuperTechFans
腾讯CDC
博客园_首页
酷 壳 – CoolShell
酷 壳 – CoolShell
月光博客
月光博客
博客园 - 聂微东
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
V
Visual Studio Blog
美团技术团队
D
DataBreaches.Net
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
(ShowDev) JavaScript Exceptions: What they do right, and ...
Sandu Bogdan · 2026-04-30 · via DEV Community

All languages have, so far, reached a certain point in their development: error handling. JavaScript, like most languages, chose try-catch statements. This way of error handling, however, is often worse than it is good, despite doing some things right.

What do they do right?

Back when programs were simple and linear, Exceptions were a great way of error handling: they force the programmer to handle any possible errors, or else the program crashes.

So, all developers had to either handle possible errors or risk their program crashing out of nowhere. This was by purpose — it was a simple yet efficient way to get developers to handle issues.

What do they do wrong?

While try-catch used to be a great way of handling errors, the more branching and complexity you add, the more annoying it is to use it.

Let’s take this scenario:

async function doSomething(key) {
    const resource = await fetch("/v2/data");  // Can fail on network error
    const data = await resource.json();  // Can fail if JSON is invalid
    const value = data[key];
    return value;
}

Enter fullscreen mode Exit fullscreen mode

This small example can throw two different errors. Let’s see how you would normally handle them:

async function doSomething(key) {
    let resource;
    try {
        resource = await fetch("/v2/data");
    } catch {
        console.error("Failed to get resource.");
        return undefined;
    }
    let data;
    try {
         data = await resource.json();
    } catch {
        console.error("Failed to parse response JSON.");
        return undefined;
    }

    const value = data[key];
    return value;
}

Enter fullscreen mode Exit fullscreen mode

So, just to fetch some data and retrieve a value, we need two try-catch statements.

Let's rewrite that with a single try-catch statement:

async function doSomething(key) {
    try {
        const resource = await fetch("/v2/data");
        const data = await resource.json();

        const value = data[key];
        return value;
    } catch {
        console.error("An error occured.");
        return undefined;
    }
}

Enter fullscreen mode Exit fullscreen mode

While this works, the error handling here is far too broad for modern codebases.

The solution

So, exceptions are messy. The solution? — Errors As Values (yes i typed that em-dash by hand).

Let's see what that exact same code would look like if fetch(), .json(), and key indexing all used Errors As Values instead of throwing an Error.

async function doSomething(key): [unknown, Error | null] {
    const resource = await fetch("/v2/data");
    if (!resource)
        return [undefined, new Error("Failed to fetch resource")];

    const data = await resource.json();
    if (data === undefined)
        return [undefined, new Error("Failed to parse response JSON")];

    const value = data[key];
    return [value, null];
}

const data = await doSomething("myKey");

if (data[0])
    console.log(data[0]);
else
    console.error(`New Error: ${data[1]}`);

Enter fullscreen mode Exit fullscreen mode

Notice how much shorter it is, while still allowing the developer to handle errors?

A good example of Errors-As-Values is Effect, which, despite its steep learning curve, provides a great implementation of Errors-As-Values.

Not everyone is willing to learn an entirely new framework, though (especially not one that involves whatever yield* myFunc() is). Good news is: you don't need to; you can very easily implement your own basic version of this. Here is an example:

type ExpectedType<T, E> = {success: true, data: T} |
        {success: false, data: E};

const ok = (v) => ({success: true, data: v});
const fail = (e) => ({success: false, data: e});

async function doSomething(key): ExpectedType<unknown, Error> {
    const resource = await fetch("/v2/data");
    if (!resource[0])
        return fail(resource[1]);

    const data = await resource.json();
    if (!data[0])
        return fail(data[1]);

    const value = data[key];
    return ok(value);
}

const data = await doSomething("myKey");

if (data.success)
    console.log(data[0]);
else
    console.error(`New Error: ${data[1]}`);

Enter fullscreen mode Exit fullscreen mode

(ShowDev) Writing a makeshift solution

Just so I could have a simple solution to this problem, I wrote ErrorsAsValuesTS — a library designed specifically for Errors-As-Values error handling.

Here's an example of the above code with this library:

import { Expected } from "errorsasvaluests";

async function doSomething(key): unknown {
    const resource = await fetch("/v2/data");

    const data = await resource.json();

    const value = data[key];
    return value;
}

const value = await Expected<unknown, Error>.run(doSomething, ["myKey"]).onError(
    e => { console.error(`New Error: ${e}`); }

if (value !== undefined)
    console.log(value);
);

Enter fullscreen mode Exit fullscreen mode

This code snippet runs doSomething("myKey"). If any error is thrown, value becomes undefined and that arrow function is called. If no error is thrown, value becomes the returned data. Simple enough, yet robust. No more reading source code to see what errors can be thrown (they are now typed), no more forgetting to handle errors.

So why doesn't JavaScript throw away Exceptions?

Simple answer — it can't.

Long answer — all existing infrastructure running on JavaScript/TypeScript already assumes, and relies on, Exception-based error handling. All of the existing Node programs, all of the existing websites, they all assume Exception-based error handling. If JavaScript suddenly moved away from Exceptions, years of backwards compatibility would be lost, and the costs of switching to a new method of handling errors would be massive.

Conclusion

Exceptions work for simple, linear programs, but they are severely limited in real-world applications. They are still useful, however, for backwards-compatibility purposes.

I am not saying JavaScript is bad for having used Exceptions, nor am I implying anything bad about JavaScript itself. Instead, exceptions shouldn't generally be used by libraries, modules or normal codebases unless there is a really good reason for it, and you should instead prefer using simple Errors-As-Values implementations or just going for Effect (or an errno()-like implementation, if you wish). How you implement Errors-As-Values doesn't matter; if done properly, it will make your codebase easier to work with.

Additionally, Exceptions remain a good idea for actually exceptional issues that shouldn't normally appear, but are arguably worse for structured control flow or expected errors.