본문 바로가기
Develop/Feature

Mac Node.js 설치

by 코젼 2024. 6. 24.
728x90
반응형

https://nodejs.org/en/download/package-manager

 

Node.js — Download Node.js®

Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.

nodejs.org

 

v20.15.0 (LTS)

# installs nvm (Node Version Manager)
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash

# download and install Node.js (you may need to restart the terminal)
nvm install 20

# verifies the right Node.js version is in the environment
node -v # should print `v20.15.0`

# verifies the right NPM version is in the environment
npm -v # should print `10.7.0`
728x90
반응형

'Develop > Feature' 카테고리의 다른 글

[Docker] Database docker-compose 구축(mysql, redis)  (0) 2024.07.22
Filter, Interceptor  (0) 2024.07.16
Swagger UI 사용  (0) 2024.06.12
Layered Architecture 구조, API 적용하기  (0) 2024.05.28
Apache 아파치 http 서버 설치  (0) 2024.03.22

댓글