What's New in Node 22
Lesson write-up coming soon
What's New in Node 22?
Exploring Node 22
RyanChenkie
Full Stack Instructor
Environment files are important for being able to dynamically set runtime variables. These variables are often things like a database connection strings and auth provider parameters. In this lesson, we look at how to use new support for environment files in more recent versions of Node and how we no longer need to rely on packages like dotenv.
Exploring Node 22
Install Node 22
There are a few different ways to install Node and manage its versions. One...
Working with env Files
Environment files are important for being able to dynamically set runtime v...
Using Watch Mode
When developing Node applications, we often want to reach for something tha...
Using glob for File Matching
There are many cases where we may need to match files based on a pattern. L...
Replacing npm run with node run
As it turns out, npm run isn't the most performant command. Node now ships ...
How to Require ES Modules
Many libraries no longer support CommonJS at their most recent versions. Th...
Lesson write-up coming soon
Lesson Resources
Get the code for this lesson