Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Lesson 01: Setting up Node.js

Install Node, manage versions, and run your first file.

What you'll learn

  • download the LTS version from nodejs.org, or use a version manager (nvm)
  • node -v and npm -v confirm the install
  • nvm install 20 && nvm use 20 to switch versions
  • run a file: node app.js

Example

See examples/.

Exercise

Install Node 20 with nvm and print your version.