Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 405 Bytes

File metadata and controls

18 lines (11 loc) · 405 Bytes

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.