Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- GIT
- plugin
- find
- xargs
- resource
- bash
- grep
- IntelliJ
- 네트워크
- web.xml
- context
- lsof
- port
- tomcat
- Mac
- Source
- vscode
- Windows
- maVen
- Eclipse
- ssh
- profile
- JavaScript
- VirtualBox
- Quartz
- import
- 줄바꿈 문자
- 단축키
- Windows 10
- netsh
Archives
- Today
- Total
develog
[mac] node.js & npm 설치 본문
node installer 다운로드 & 설치
https://nodejs.org/ko/download/
다운로드 | Node.js
Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.
nodejs.org
brew 로 node 설치
$ brew update
$ brew install node
node 설치 확인
$ node --version
v17.4.0
$ npm --version
8.3.1
npm
프로젝트 초기화
## package.json 이 생성된다
$ npm init
$ npm init -y
디펜던시 설치 & 제거
## 로컬에 설치
$ npm install mocha
## 로컬에서 삭제
$ npm uninstall mocha
## 글로벌에 설치
$ sudo npm install mocha
## 글로벌에서 삭제
$ sudo npm uninstall mocha
## 디펜던시 위치
$ npm install mocha --save-prod
$ npm install mocha --save-dev
디펜던시 설치 목록 조회
## 로컬 설치 목록
$ npm list
$ npm list --depth=0
## 글로벌 설치 목록
$ npm list --global
$ npm list -g
$ npm list -g --depth=0
Comments