【Node.js】npm ls 때의 deduped란
deduped란?
/app # npm ls minimist
[email protected] /app
+-- [email protected]
| `-- [email protected]
| `-- [email protected]
| `-- [email protected]
| `-- [email protected]
| `-- [email protected]
| `-- [email protected] deduped ← これ
`-- [email protected]
+-- [email protected]
| `-- [email protected]
| `-- [email protected]
| `-- [email protected]
| `-- [email protected] deduped ← これ
`-- [email protected]
`-- [email protected]
npm ls
명령이 실행될 때 표시되는 deduped
는 de-duplicated
, 즉 duplication
중복을 reduce
제외했다는 의미입니다. de
는 해독 또는 de
입니다.일본어로 말하면 「같은
npm
패키지 및 버젼의 패키지가 인스톨 끝나므로 삭제된 의존 패키지이다」라고 하는 의미로, 용량을 확보하기 위한 구조입니다.npm dedupe
명령이 자동으로 실행될 때 제거된 종속 패키지가 npm ls
때 deduped
로 표시됩니다.참고문헌
What is deduped in npm packages list?의 의견 @ StackOverflow
dedupe | CLI commands @ 공식 npm 문서
설치된 패키지 목록 보기 @ Qiita
Reference
이 문제에 관하여(【Node.js】npm ls 때의 deduped란), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/KEINOS/items/d71c615b9ef3a3ed8886텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)