Best of Express.jsDecember 2024

  1. 1
    Article
    Avatar of trevorlasnTrevor Lasn·1y

    AsyncLocalStorage: Simplify Context Management in Node.js

    AsyncLocalStorage allows you to maintain context across async operations without manually passing data through functions. It's useful for tracking requests in microservices, logging, and managing database transactions. However, it's unnecessary for simple synchronous code and can add complexity when building public APIs. AsyncLocalStorage requires Node.js 23 or higher.

  2. 2
    Article
    Avatar of freecodecampfreeCodeCamp·1y

    How to Build a Video Subtitle Generator using the Gemini API

    Learn to build an AI-powered video subtitle generator using Google's Gemini API, React, and Express. The guide covers setting up the front end with React, the back end with Express, obtaining an API key, handling file uploads, and configuring communication with the Gemini API for subtitle generation.