Node v16.3.0 (Current)

Notable Changes cli : add -C alias for –conditions flag (Guy Bedford) #38755 deps : add workspaces support to npm install commands (Ruy Adorno) #38750 Commits [ 4e58ec4aa6 ] – benchmark : output JSON-compatible numbers (Michaël Zasso) #38778 [ 7a9d0fd5a9 … more Read More

Demystifying TypeScript’s Extract Type

Many of the applications we develop at Widen utilize TypeScript for front-end development to provide a high level of type safety while also remaining familiar to developers who are used to JavaScript. In one such application, a need arose that required … more Read More

10 hot language projects riding WebAssembly

Today’s web applications are nowhere near as fast and responsive as native desktop applications, but what if they could be? That’s the promise of WebAssembly. WebAssembly is a low-level, assembly-like language with a compact binary format that runs with … more Read More

Angular team streamlines feature requests

The team behind Angular, Google’s popular TypeScript-based web framework, soon will introduce a new approach to handling feature requests. The new approach will be similar to how Microsoft develops its Visual Studio Code editor. Under the new process, … more Read More

Google boosts V8 JavaScript performance

With the Sparkplug compiler, Google is looking to improve JavaScript performance in its Chrome browser. Sparkplug is debuting in Chrome 91. Featured as part of Chrome’s V8 JavaScript/WebAssembly engine, Sparkplug is positioned as a “super-fast” non-optimizing … more Read More

[Course] vue: The Beginner’s Guide to Vue 3

Vue is a progressive framework for building UIs that allows you to incrementally integrate the technology into any existing project that you’re working on. This makes it a great tool for you to learn as you can bring it anywhere. This course is for learners … more Read More

vue: Interpolate JavaScript Expressions in Vue

We’ll see how to signal to Vue that a string should be considered as JavaScript to be interpolated. We do this with double curly braces (`{{ }}`). We’ll also see that we can access data properties that have been used into Vue during configuration. While … more Read More