Tc39

Open-source projects categorized as Tc39

Top 17 Tc39 Open-Source Projects

  • javascript

    JavaScript Style Guide

  • Project mention: Decoding JavaScript Variables: A Comprehensive Overview | dev.to | 2024-04-21

    // Follow Established Style Guides // Adhere to established style guides such as Airbnb JavaScript Style Guide or Google JavaScript Style Guide to maintain consistency across your codebase. // These style guides provide comprehensive rules and recommendations for variable naming, declaration, and usage. // Example: Airbnb JavaScript Style Guide // https://github.com/airbnb/javascript /** * Represents a person with a given name and age. * @typedef {Object} Person * @property {string} name - The name of the person. * @property {number} age - The age of the person. */ /** * Create a new person. * @param {string} name - The name of the person. * @param {number} age - The age of the person. * @returns {Person} - The newly created person object. */ function createPerson(name, age) { return { name, age }; } const person1 = createPerson("John", 30); const person2 = createPerson("Jane", 25); console.log(person1); console.log(person2);

  • proposal-pipeline-operator

    A proposal for adding a useful pipe operator to JavaScript.

  • Project mention: Pipeline Operator great again! | dev.to | 2023-09-29

    Current Status: You'd have to check the TC39 proposals repository or the official proposal text for the most recent status. As of my last update, it had not yet reached Stage 4 (final stage) of the TC39 process, which means it wasn't part of the ECMAScript specification yet.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • proposal-record-tuple

    ECMAScript proposal for the Record and Tuple value types. | Stage 2: it will change!

  • Project mention: Union, intersection, difference, and more are coming to JavaScript Sets | news.ycombinator.com | 2024-02-19

    relevant issue, which is at the crux of this problem: https://github.com/tc39/proposal-record-tuple/issues/387

  • test262

    Official ECMAScript Conformance Test Suite

  • Project mention: The Ladybird Browser Project | news.ycombinator.com | 2024-02-06

    Indeed. These may be even more important...

    https://github.com/tc39/test262

  • proposal-iterator-helpers

    Methods for working with iterators in ECMAScript

  • Project mention: TC39: Add Object.groupBy and Map.groupBy | news.ycombinator.com | 2023-12-19

    Global iterator type is coming: https://github.com/tc39/proposal-iterator-helpers

    But a method named `groupBy` on iterators traditionally means a different thing: https://github.com/tc39/proposal-array-grouping/issues/51#is...

    Global iterable type it's too late for, since there's many extant iterables in the language and on the web which don't have it in their prototype chain and can't reasonably be changed.

  • proposal-change-array-by-copy

    Provides additional methods on Array.prototype and TypedArray.prototype to enable changes on the array by returning a new copy of it with the change.

  • Project mention: Records and Tupples in JavaScript | /r/learnjavascript | 2023-06-21

    The new change array by copy methods (ES2023) will also work with tuples. So while you can't

  • proposals

    ✍️ Tracking the status of Babel's implementation of TC39 proposals (may be out of date) (by babel)

  • Project mention: An intro to TSConfig for JavaScript Developers | dev.to | 2024-04-23

    target - Specifies the ECMAScript target version for the emitted JavaScript. Defaults to ES3. To ensure maximum compatibility, set this to the lowest version that your code requires to run. ESNext setting allows you to target the latest supported proposed features.

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

    WorkOS logo
  • standards-positions

    WebKit's positions on emerging web specifications (by WebKit)

  • Project mention: iOS404 | news.ycombinator.com | 2024-04-16

    You can check why Mozilla and Apple have opted to not support this.

    https://github.com/mozilla/standards-positions/issues/154

    https://github.com/WebKit/standards-positions/issues/28

    Neither Mozilla or Webkit are satisfied that the proposal is safe by default, and contains footguns for the user that can be pretty destructive.

  • proposal-source-phase-imports

    Proposal to enable importing modules at the source phase

  • Project mention: JSR: The JavaScript Registry | news.ycombinator.com | 2024-03-01

    We will soon support WASM imports (`import source foo from "./foo.wasm"`). [1]

    [1]: https://github.com/tc39/proposal-source-phase-imports

  • proposal-symbols-as-weakmap-keys

    Permit Symbols as keys in WeakMaps, entries in WeakSets and WeakRefs, and registered in FinalizationRegistries

  • proposal-function-memo

    A TC39 proposal for function memoization in the JavaScript language.

  • proposal-call-this

    A proposal for a simple call-this operator in JavaScript.

  • test262.fyi

    Daily runner of test262 for many engines

  • Project mention: Test262.fyi: Daily runner of test262 for many engines | news.ycombinator.com | 2023-06-08
  • proposal-bigint-math

    Draft specification for supporting BigInts in JavaScript’s Math methods.

  • proposal-get-intrinsic

    EcmaScript language proposal for a way to get intrinsics.

  • proposal-function-demethodize

    Draft specification for a standard demethodize function in JavaScript.

  • String.prototype.trimStart

    ES2019 spec-compliant String.prototype.trimStart shim

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

Tc39 related posts

Index


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com