2015-12

Babel 6: loose mode

[2015-12-12] dev, javascript, jstools, babel, esnext

Babel’s loose mode transpiles ES6 code to ES5 code that is less faithful to ES6 semantics. This blog post explains how that works and what the pros and cons are (spoiler: normally not recommended).

Babel 6: configuring ES6 standard library and helpers

[2015-12-11] dev, javascript, jstools, babel, esnext

This blog post explains how to configure how Babel 6 accesses its own helper functions and the ES6 standard library.

2015-11

Configuring Babel 6

[2015-11-29] dev, javascript, jstools, babel, esnext

Babel 6 is much more configurable than Babel 5, but also more difficult to configure. This blog post gives tips.

ES proposal: Trailing commas in function parameter lists and calls

[2015-11-27] dev, javascript, esnext, es proposal

The following ECMAScript proposal is at stage 3: “Trailing commas in function parameter lists and calls” by Jeff Morrison. This blog post explains it.

ES proposal: string padding

[2015-11-26] dev, javascript, esnext, es proposal

The ECMAScript proposal “String padding” by Jordan Harband & Rick Waldron is part of ECMAScript 2017. This blog post explains it.

ES proposal: Object.entries() and Object.values()

[2015-11-20] dev, javascript, esnext, es proposal

The following ECMAScript proposal is at stage 4: “Object.values/Object.entries” by Jordan Harband. This blog post explains it.

The TC39 process for ECMAScript features

[2015-11-15] dev, javascript, esnext, es proposal

This blog post explains the so-called TC39 process, which governs how ECMAScript features are designed, starting with ECMAScript 2016 (ES7).

Synchronous and asynchronous sequential execution of functions

[2015-11-03] dev, javascript, esnext, async

This blog post examines three ways of executing function sequentially:

  • Synchronously
  • Asynchronously, via Promises
  • Asynchronously, via the library co

2015-10

Reader survey 2015

[2015-10-25] 2ality

The traversal order of object properties in ES6

[2015-10-24] dev, javascript, esnext

The ECMAScript 6 specification defines in which order the properties of an object should be traversed. This blog post explains the details.