About 5,130,000 results
Open links in new tab
  1. javascript - What is ECMAScript? - Stack Overflow

    ECMAScript is a standard for a scripting language. It specifies the core features that a scripting language should provide and how those features should be implemented.

  2. What is the difference between JavaScript and ECMAScript?

    May 26, 2009 · 201 ECMAScript = ES ECMAScript is a specification for scripting languages defined in the ECMA-262 standard. Languages like JavaScript are based on the ECMAScript standard. ECMA …

  3. ES7, ES8, ES9, ES10, ES11 Browser support - Stack Overflow

    May 16, 2020 · Regarding compatibility between ECMAScript specification and actual implementation; It is fairly easy to check out the data about browser support for ECMAScript2015 (ES6), but I found it …

  4. Cannot use mix ECMAScript and CommonJS module - Stack Overflow

    Dec 9, 2023 · Cannot use mix ECMAScript and CommonJS module Asked 1 year, 11 months ago Modified 1 year, 11 months ago Viewed 10k times

  5. What ECMAScript version does Node.js support? - Stack Overflow

    Jan 30, 2022 · Usually ECMAScript support is on a per-feature basis. Which feature do you need to support? Use caniuse.com and MDN to find if Node.js supports that feature.

  6. When should I use arrow functions in ECMAScript 6?

    Apr 8, 2014 · A while ago our team migrated all its code (a mid-sized AngularJS app) to JavaScript compiled using Traceur Babel. I'm now using the following rule of thumb for functions in ES6 and …

  7. Module not found: Can't resolve '@vercel/turbopack-ecmascript …

    Feb 22, 2024 · I'm not trying to import anything from @vercel/turbopack-ecmascript-runtime directly in my code. Here are the steps I've taken to try to resolve this issue: Deleted node_modules and …

  8. ecmascript 6 - Alternative for __dirname in Node.js when using ES6 ...

    I use the flag --experimental-modules when running my Node application in order to use ES6 modules. However when I use this flag the metavariable __dirname is not available. Is there an alternative...

  9. unit testing - Test ES6 modules with Jest - Stack Overflow

    Now you can support ES6 and ESM (ECMAScript modules) natively: Step 1: Prevent Jest from trying to transform ESM code to CommonJS, updating your Jest config (package.json example below) with:

  10. Why won’t TypeScript let me import a type from an ES module into a ...

    Aug 23, 2024 · Type-only import of an ECMAScript module from a CommonJS module must have a 'resolution-mode' attribute. ...which doesn’t answer the question of why the import is an error, which …