News

Prevents dangerous boolean coercion of arrays and objects in JavaScript and TypeScript. Arrays and objects are always truthy in JS, even when empty - this catches common bugs from developers expecting ...
Two celebrated frameworks get together to make your life easier. Here’s a first look at full-stack JavaScript development ...
The Ecma Technical Committee 39 (TC39), the body responsible for the evolution of JavaScript (ECMAScript), recently advanced nine proposals through its stage process, with three new language features ...
import {$} from 'zx'; $.verbose = true; await $`echo ${[1, '', '*', '2']}` Output: $ echo 1 $'*' 2 Expected $ echo 1 $'' $'*' 2 ...