Best of V8 — 2022

  1. 1
    Article
    Avatar of communityCommunity Picks·4y

    JavaScript Visualized: the JavaScript Engine

    JavaScript is based on the V8 engine used by Node.js and Chromium-based browsers. The engine tries to avoid parsing code that's not necessary right away. The optimized machine code can simply be re-used in order to speed things up. V8 is open source and has some great documentation on how it works under the hood.

  2. 2
    Article
    Avatar of communityCommunity Picks·4y

    leonardomso/33-js-concepts: 📜 33 JavaScript concepts every developer should know.

    This repository was created with the intention of helping developers master their concepts in JavaScript. It is based on an article written by Stephen Curtis and you can read it here. Feel free to submit a PR adding a link to your own recaps or reviews. All the translations for this repo will be listed below. The Ultimate Guide to Execution Contexts, Hoisting, Scopes, and Closures in JavaScript.

  3. 3
    Article
    Avatar of communityCommunity Picks·4y

    What Is Bun.js and Why Is the JavaScript Community Excited About It?

    Bun is the third of its kind after Node.js and Deno.js, created by Jarred Sumner using the Zig programming language. Bun advances to provide new levels of speed and enhanced complexity.

  4. 4
    Article
    Avatar of communityCommunity Picks·4y

    JavaScript: V8 Engine

    The letters 'JS' within a square JavaScript: V8 Engine is a single-threaded scripting language. This means it can only do 1 thing at a time. It has 1 call stack.

  5. 5
    Article
    Avatar of appsignalAppSignal·4y

    Node.js 19 Release: What’s New

    Node.js team recently announced the release of version 19. This has the following features: (experimental) - KeepAlive by default - Stable WebCrypto - V8 engine updates. In this article, we will explore the major highlights of this release.

  6. 6
    Article
    Avatar of communityCommunity Picks·4y

    Roll your own JavaScript runtime

    The goal of this post is to build a (much) simplified version of deno itself. The goal is to create a CLI that can execute local JavaScript files, read a file, write a file and remove a file. In just 25 lines of Rust code we created a simple JavaScript runtime that can Execute local files.