Skip to main content
Redhat Developers  Logo
  • Products

    Platforms

    • Red Hat Enterprise Linux
      Red Hat Enterprise Linux Icon
    • Red Hat AI
      Red Hat AI
    • Red Hat OpenShift
      Openshift icon
    • Red Hat Ansible Automation Platform
      Ansible icon
    • View All Red Hat Products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat Developer Hub
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat OpenShift Local
    • Red Hat Developer Sandbox

      Try Red Hat products and technologies without setup or configuration fees for 30 days with this shared Openshift and Kubernetes cluster.
    • Try at no cost
  • Technologies

    Featured

    • AI/ML
      AI/ML Icon
    • Linux
      Linux Icon
    • Kubernetes
      Cloud icon
    • Automation
      Automation Icon showing arrows moving in a circle around a gear
    • View All Technologies
    • Programming Languages & Frameworks

      • Java
      • Python
      • JavaScript
    • System Design & Architecture

      • Red Hat architecture and design patterns
      • Microservices
      • Event-Driven Architecture
      • Databases
    • Developer Productivity

      • Developer productivity
      • Developer Tools
      • GitOps
    • Automated Data Processing

      • AI/ML
      • Data Science
      • Apache Kafka on Kubernetes
    • Platform Engineering

      • DevOps
      • DevSecOps
      • Ansible automation for applications and services
    • Secure Development & Architectures

      • Security
      • Secure coding
  • Learn

    Featured

    • Kubernetes & Cloud Native
      Openshift icon
    • Linux
      Rhel icon
    • Automation
      Ansible cloud icon
    • AI/ML
      AI/ML Icon
    • View All Learning Resources

    E-Books

    • GitOps Cookbook
    • Podman in Action
    • Kubernetes Operators
    • The Path to GitOps
    • View All E-books

    Cheat Sheets

    • Linux Commands
    • Bash Commands
    • Git
    • systemd Commands
    • View All Cheat Sheets

    Documentation

    • Product Documentation
    • API Catalog
    • Legacy Documentation
  • Developer Sandbox

    Developer Sandbox

    • Access Red Hat’s products and technologies without setup or configuration, and start developing quicker than ever before with our new, no-cost sandbox environments.
    • Explore Developer Sandbox

    Featured Developer Sandbox activities

    • Get started with your Developer Sandbox
    • OpenShift virtualization and application modernization using the Developer Sandbox
    • Explore all Developer Sandbox activities

    Ready to start developing apps?

    • Try at no cost
  • Blog
  • Events
  • Videos

Node.js at Red Hat: 2021 year in review

January 10, 2022
Michael Dawson Bethany Griggs Lucas Holmquist
Related topics:
ContainersHelmKubernetesNode.js
Related products:
Red Hat OpenShift

Share:

    As we start the new year, it's a good time to look back on what the Red Hat Node.js team accomplished in 2021. Time goes by quickly, and it's easy to forget the work we've done and the useful assets that we've put together.

    The team is involved in a variety of projects: working on the upstream Node.js releases, keeping the V8 JavaScript engine running on Power and s390 platforms, publishing content to help Node.js developers learn and adopt Node.js, and creating guidance for enterprise Node.js deployments on Red Hat OpenShift and other settings. Through our wide-ranging work, we have the opportunity to collaborate with many people from across the community and ecosystem. Here are some of the highlights from the past year.

    Node.js 17 and community involvement

    In accordance with the regular release schedule, the Node.js project shipped two major versions in 2021. Node.js 16 was released in April and promoted to long-term support in October. Also in October, Node.js 17 was released, becoming our current release line. Beth Griggs led both these releases and authored the following upstream Node.js release announcements on behalf of our team:

    • Node.js 16 available now
    • Node.js 17 is here!

    Aside from the major releases, several members of the Red Hat team have supported the upstream Node.js security releases, which often require quick turnarounds in response to discovered issues.

    Releases are only one of the areas where our team is active within the community. Behind the scenes, we help keep the infrastructure running as part of the Node.js Build Working Group, with Ash Cripps and Richard Lau investing a lot of their time. We are also active members of the Package Maintenance Working Group and Node-API team and help lead forward-thinking efforts like the Next 10 effort. Dan Bevenius and Richard Lau helped land the OpenSSL 3.0 update, released in Node.js 17, which was a significant effort.

    While the main goal of doing this work is to support the Node.js ecosystem, it also pays dividends by keeping us up to date on key topics and technologies in Node.js and JavaScript. It's also a great way to build contacts with other community leaders and experts and to learn from them. Tasks that look daunting on your own can be easier as a team effort. As an example, one new thing we tried out was a "team triage day" where we progressed 134 issues across community projects.

    Things we shipped

    While we do spend a lot of our time on community work, we also work on a number of key initiatives for Red Hat. This past year our team shipped a wide range of assets and content, from articles and cheat sheets to node modules and containers.

    Cheat Sheets

    In 2021 the team released a variety of quick reference guides for Node.js developers:

    • ECMAScript Modules Cheat Sheet
    • Node.js Event Emitter Cheat Sheet
    • JavaScript promises and async/await Cheat Sheet
    • npm CLI Cheat Sheet
    • Node.js Cheat Sheet

    Node modules

    Along with the various modules we maintain in the NodeShift organization, we've released a new module called Kube Service Bindings. Service bindings is a Kubernetes specification defining how to communicate service secrets to applications in an automated way. The goal of this package is to make it easy for Node.js applications to consume Kubernetes and OpenShift secrets, without requiring developers to be familiar with service bindings.

    Opossum, a circuit breaker that helps keep Node.js applications running, has been a community project since late 2016. It now has more than 70,000 downloads per week. The project is supported by the Nodeshift community. This year, Red Hat has released a fully supported version of Opossum that is distributed through Red Hat's customer registry as @redhat/opossum. Opossum will always be a community project, but if you would like to know that the version you are using has Red Hat's support, the @redhat/opossum version might be for you. You can learn more about Red Hat's Node.js offerings at our customer portal, and more about Opossum in the article What is a circuit breaker?

    Helm

    There are many different ways to deploy Node.js applications to Kubernetes and OpenShift. Helm charts provide a particularly convenient way to create and share ways to build varied images. The article Deploy Node.js applications to Red Hat OpenShift with Helm shows you how to deploy a Node.js application using Helm, along with some recent additions to OpenShift.

    Red Hat containers

    This year also marked the release of Node.js 14 as a UBI (Universal Base Image) minimal image on Red Hat Enterprise Linux. Minimal images are typically used in conjunction with a larger build image. The larger builder image contains all the dependencies and tools needed for your application's build process, whereas the smaller runtime image contains just the dependencies needed to run your application.

    Find out more by reading the article Optimize Node.js images with the UBI 8 Node.js minimal image.

    Serverless

    We provided content that showed how to use the Opossum circuit breaker with serverless functions, Node.js circuit breakers for serverless functions. The team also released a series of posts diving deeper into some of the different aspects of serverless functions. The series includes information on logging and debugging. The first two articles in the series can be found at the following links:

    • Node.js serverless functions on Red Hat OpenShift, Part 1: Logging
    • Node.js serverless functions on Red Hat OpenShift, Part 2: Debugging locally

    Node.js reference architecture

    The Node.js reference architecture was a focus for our team last year. We gathered information and documented the experience from experts across Red Hat and IBM, based on our real-world Node.js developments and expertise. Although we still have a lot of work to do, we are proud of what we've covered so far and regularly point our internal teams and customers to the document as a resource to answer common questions.

    Interested in some of the discussions that went into the reference architecture? The Introduction to the Node.js reference architecture, Part 1: Overview is a good place to start.

    Conferences

    The Red Hat team continued to participate in many conferences in 2021, with members of the team presenting talks, holding workshops, and assisting at virtual booths. This year again, the conferences were all virtual but still offered a great opportunity for us to connect with the wider community. Two major conferences for us this year were OpenJS World 2021 and NodeConf Remote, with our team presenting a number of talks at both conferences.

    See the following articles covering our participation at these conferences:

    • Join the Red Hat team at OpenJS World 2021
    • NodeConf Remote 2021 preview: 4 must-see talks

    Looking forward to 2022

    In 2022, we'll continue to be active in the community, supporting the planned new major releases of Node.js 18 and 19. We'll also continue to develop our Node.js Reference Architecture. We hope 2022 is the year we get to return to in-person conferences and collaboration summits so that we can meet with the wider community face-to-face again.

    To keep up with what Red Hat is up to with Node.js, visit the Node.js topic page on Red Hat Developer.

    Happy new year from the Node.js team at Red Hat!

    Last updated: September 25, 2024

    Related Posts

    • Fail fast with Opossum circuit breaker in Node.js

    • Why we developed the Node.js reference architecture

    • Optimize Node.js images with the UBI 8 Node.js minimal image

    • Node.js serverless functions on Red Hat OpenShift, Part 1: Logging

    Recent Posts

    • Skopeo: The unsung hero of Linux container-tools

    • Automate certificate management in OpenShift

    • Customize RHEL CoreOS at scale: On-cluster image mode in OpenShift

    • How to set up KServe autoscaling for vLLM with KEDA

    • How I used Cursor AI to migrate a Bash test suite to Python

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer Tools
    • Interactive Tutorials
    • API Catalog

    Quicklinks

    • Learning Resources
    • E-books
    • Cheat Sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site Status Dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2025 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Report a website issue