반응형
npm install [패키지1] [패키지2]
현재 디렉토리의 node_modules 디렉토리에 패키지 설치
npm install -g [패키지1] [패키지2]
글로벌 영역 설치로 내 컴퓨터의 모든 프로젝트에 적용됨
npm install --save [패키지1] [패키지2]
package.json에 의존성(dependencies) 저장 한다.
다른 컴퓨터에서 npm install 사용하여 패키지를 설치 할 수 있다.
npm install --save-dev [패키지1] [패키지2]
devDependencies 저장
설치 할 떄 --production 옵션을 주면 설치 않음.
반응형
'실전 단아 개발 가이드' 카테고리의 다른 글
프르미스 (0) | 2024.01.21 |
---|---|
화살표 함수 (0) | 2024.01.21 |
https://unpkg.com/browse/@mui/material@5.15.1/Button/Button.d.ts (0) | 2024.01.21 |
A set of React components implementing Google's Material Design specification with the power of CSS Modules (0) | 2024.01.21 |
The repository for high quality TypeScript type definitions. (0) | 2024.01.21 |