proposal-record-tuple VS proposal-pattern-matching

Compare proposal-record-tuple vs proposal-pattern-matching and see what are their differences.

proposal-record-tuple

ECMAScript proposal for the Record and Tuple value types. | Stage 2: it will change! (by tc39)
InfluxDB high-performance time series database
Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.
influxdata.com
featured
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai
featured
proposal-record-tuple proposal-pattern-matching
81 69
2,541 5,625
1.3% 0.8%
2.7 7.7
over 1 year ago 7 months ago
HTML HTML
- MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

proposal-record-tuple

Posts with mentions or reviews of proposal-record-tuple. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-01-30.
  • The Record/Tuple ECMAScript Proposal has been withdrawn
    1 project | news.ycombinator.com | 22 Apr 2025
  • Record and Tuple Proposal Withdrawn by Tc39
    1 project | news.ycombinator.com | 15 Apr 2025
  • JavaScript Temporal Is Coming
    14 projects | news.ycombinator.com | 30 Jan 2025
    Records and tuples are unlikely to ever ship, or at least are extremely unlikely to ship with the semantics around equality people want. My understanding is that browser vendors already have pretty strong opposition to introducing new primitives at this point. Reading this thread[1] will give some explanation as to the hiccups with how equality would behave. It sucks, because while I wouldn't have expected BigInt to have gotten much adoption in the first place, I constantly run into cases where I'd want records or tuples.

    [1] https://github.com/tc39/proposal-record-tuple/issues/387

  • JavaScript Structs
    9 projects | news.ycombinator.com | 9 Oct 2024
  • Ask HN: What's the next big step in the evolution of web applications?
    1 project | news.ycombinator.com | 17 Jul 2024
    The next big step is dependent on JS language/runtime features. Specifically the Record-Tuple proposal (https://github.com/tc39/proposal-record-tuple)

    TL;DR: It's a way to designate data as being immutable.

    JS doesn't currently have a good way to do this, so everything built for it tries to assume that data hasn't changed since it was last set. This leads to headaches for developers and wasted cycles for runtimes.

    When JS has a proper way to make data immutable, it makes it easier for libraries/frameworks to make guarantees about the underlying data and makes it possible for runtimes to better optimize code.

  • Union, intersection, difference, and more are coming to JavaScript Sets
    3 projects | news.ycombinator.com | 19 Feb 2024
    relevant issue, which is at the crux of this problem: https://github.com/tc39/proposal-record-tuple/issues/387
  • The Everything NPM Package
    2 projects | news.ycombinator.com | 6 Jan 2024
    There are still so many basic things that aren't in the JS stdlib, though. A good example is Map - if you need to use a tuple of two values as a key, you're SOL because there's no way to customize key comparisons. Hopefully we'll get https://tc39.es/proposal-record-tuple/ eventually, but meanwhile languages ranging from C++ to Java to Python have had some sensible way to do this for over 20 years now.
  • Deep Cloning Objects in JavaScript, the Modern Way
    8 projects | news.ycombinator.com | 21 Dec 2023
    If you’re reaching for structuredClone, what you really want is native immutable Record and Tuple syntax, and the companion “deep path properties” syntax which allows for efficient and ergonomic immutable updates:

    - https://github.com/tc39/proposal-record-tuple

  • Cool language features that Rust is missing?
    11 projects | /r/rust | 30 Jun 2023
    It will be called "record" in JavaScript which will swing the popularity back the other way I guess (currently a language proposal)
  • Why doesn't TypeScript properly type Object.keys?
    3 projects | /r/typescript | 24 Jun 2023
    I suspect considering the strong desire to maintain consistency with JavaScript, we will eventually see something that when the Record proposal passes through tc39

proposal-pattern-matching

Posts with mentions or reviews of proposal-pattern-matching. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-02-25.
  • Modern JavaScript Patterns You’ll Want to Use in 2025.
    2 projects | dev.to | 25 Feb 2025
    ❗ Where it stands: Still in Stage 1 of the TC39 Pattern Matching Proposal, meaning it’s experimental and far from being implemented in JavaScript yet.
  • Exciting New Features in ECMAScript 2024 (ES15)
    2 projects | dev.to | 10 Sep 2024
    [5] TC39. (2023). ECMAScript Pattern Matching Proposal. Retrieved from https://github.com/tc39/proposal-pattern-matching
  • Coming to grips with JS: a Rubyist's deep dive
    16 projects | dev.to | 29 Dec 2023
    Note, however, that there is a proposal to add pattern matching to JS.
  • Level up your Typescript game, functionally - Part 2
    2 projects | dev.to | 25 Nov 2023
    There's an ECMAScript proposal that is in the works to add this feature to the language! It's going to look something like this.
  • Building React Components Using Unions in TypeScript
    15 projects | dev.to | 1 Oct 2023
    More importantly, TypeScript typically commits to build things into itself when the proposal in JavaScript reaches Stage 3. The pattern matching proposal in JavaScript is Stage 1, but depends on many other proposals as well that may or may not need to be at Stage 3 as well for it to work. This particular proposal is interested on pattern matching on JavaScript Objects and other primitives, just like Python does with it’s native primitives. These are also dynamic types which helps in some areas, but makes it harder than others. Additionally, the JavaScript type annotations proposal needs to possibly account for this. So it’s going to be awhile. Like many years.
  • Explicit Software Design. Preliminary Conclusions
    3 projects | dev.to | 18 Sep 2023
    For true™ functional programming in JS, native pattern matching and partial function application are missing (at least for now: 1, 2). For proper OOP, it lacks real interfaces and compile-time dependency injection.
  • TypeScript Is Surprisingly OK for Compilers
    14 projects | news.ycombinator.com | 18 Aug 2023
    The proposal for pattern matching syntax seems more akin to what they're looking for.

    https://github.com/tc39/proposal-pattern-matching

  • [AskJS] C# in every Node.js job posting?
    2 projects | /r/javascript | 7 Jun 2023
    There's a proposal to add something like that to JavaScript but it's been stuck in limbo since 2017 although there are libraries like ts-pattern which implement it already.
  • [AskTS] What do you think will be the future of runtime type checking?
    10 projects | /r/typescript | 28 May 2023
    I'll admit, it is easy to assert that the TypeScript language should not be involved in the matters of packages but I also wonder if we're moving towards a point where interfaces will be as common as namespaces and whether or not it would be sensible for the language to incorporate such type assertions into the language formally, after all, it already compiles to various forms of JavaScript and there is a stage 1 proposal submitted to the TC39 committee to give JavaScript pattern matching. If adopted, wouldn't it make sense to allow TypeScript to compile a type into a type guard for the native JavaScript pattern matcher?
  • Updates from the 96th TC39 meeting
    5 projects | /r/javascript | 19 May 2023

What are some alternatives?

When comparing proposal-record-tuple and proposal-pattern-matching you can also consider the following projects:

react-tracked - State usage tracking with Proxies. Optimize re-renders for useState/useReducer, React Redux, Zustand and others.

fp-ts - Functional programming in TypeScript

typescript-is

ts-pattern - 🎨 The exhaustive Pattern Matching library for TypeScript, with smart type inference.

TypeScript-Call-Graph - CLI to generate an interactive graph of functions and calls from your TypeScript files

content - The content behind MDN Web Docs

InfluxDB high-performance time series database
Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.
influxdata.com
featured
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai
featured

Did you know that HTML is
the 9th most popular programming language
based on number of references?