What's New in Node 22
Lesson write-up coming soon
What's New in Node 22?
Exploring Node 22
RyanChenkie
Full Stack Instructor
When developing Node applications, we often want to reach for something that will automatically restart the process whenever we save a file. Typically this can be done with packages like nodemon. Node now comes with a --watch flag which will do the same work for us.
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