일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 게시판
- object
- 출처 : https://joshua1988.github.io/web-development/javascript/promise-for-beginners/
- http://jeonghwan-kim.github.io/dev/2019/06/25/react-ts.html
- toString
- https://velog.io/@velopert/create-typescript-react-component
- 출처 : https://webdir.tistory.com/506
Archives
- Today
- Total
Back Ground
Node - npm 설치 항목 목록 보는법 본문
npm 설치 항목 목록보기
npm global로 설치된 항목을 볼때
1 2 3 | npm ls -g npm list -g npm list -global | cs |
이 셋 중에 아무거나 해주면 된다.
그럼 모든 npm global(전역) 되어져 있는것을 확인 할 수 있다.
이러면 설치된 항목의 하위 항목(denpendency)까지 모두 보이게 된다.
그래서 npm install -g 설치한 모듈만 따로 보려면
1 | npm ls -g --depth=0 | cs |
이렇게 --depth=0을 추가 해주면 된다.
참고 : https://ponderingdeveloper.com/2013/09/03/listing-globally-installed-npm-packages-and-version/
'Javascript > Node.js' 카테고리의 다른 글
Node - Log color 지정 모듈 [chalk] (1) | 2019.03.11 |
---|---|
Node - pm2란 (0) | 2019.03.08 |
Node - Cluster [ 멀티 스레드 처럼 ] (1) | 2019.03.06 |
Node - [ MySQL ] - 시퀄라이즈(ORM) 이용한 데이터 베이스 세팅 (0) | 2019.03.05 |
WebPack의 기본 개념 (0) | 2019.03.01 |
Comments