alt.hn

4/1/2025 at 5:05:21 PM

In Defence of TypeScript Enums

https://yazanalaboudi.dev/in-defence-of-typescript-enums

by romellem

4/1/2025 at 11:21:12 PM

I think the author missed that we are criticising typescript's enum implementation not the concept of enums in general.

They transcribe to something better defined in javascript. Typescript itself akwardly sits on the fence of almost entirely erasable and some decisions only make sense if that was the goal, like import files having a js rather than the ts extension that would point to the file in source.

Enums become javascript objects in a very leaky abstraction full of footguns. There are plenty of articles that cover these and this author seems to have written them off as 'not holding it right' but a good language feature fits in the hand naturally to stretch the analogy.

by TheCycoONE

4/1/2025 at 11:29:17 PM

This is the problem with typescript enums, they're close enough to "normal" enums in other "real" languages that there aren't any hard edges at first glance. Luring you in with a false sense of comfort and familiarity.

Then abstraction starts leaking everywhere because it's trying to bridge between typescript and javascript and you start wishing you had either made an object (pure JS) or a literal union (pure TS).

by miningape

4/1/2025 at 7:49:28 PM

Nice article, clearly defines the scope for enums and why it is so in TS. I had the same feeling and use enums a lit less than in C#, because of mentioned limitations, but they're still useful for right purpose

by koshdim

4/1/2025 at 8:56:27 PM

`if (color === "Red") {`

This counter example against using unions of literals would result in a compiler error ts(2367). Which only furthers the argument for using unions of literals instead.

by tengbretson