Setting Up the Development Environment
Topic Outline (30-min)
bash코드 복사node -v npm -v
bash코드 복사curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash - sudo apt-get install -y nodejs
bash코드 복사curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.4/install.sh | bashbash코드 복사nvm --versionbash코드 복사nvm install 18 nvm use 18
bash코드 복사nodejavascript코드 복사console.log('Hello, REPL!'); let a = 10; let b = 20; a + b;
javascript코드 복사let a = 10; let b = 20; debugger; console.log(a + b);bash코드 복사node inspect debug.js
bash코드 복사node -v npm -v
Last updated