npm tree 명령어로 프로젝트 폴더 구조 출력
개발 프로젝트를 포트폴리오로 정리할 때 폴더, 파일 구조가 필요할 때가 있다. 이럴 때 tree 명령어를 사용하면 쉽게 출력할 수 있다. 목차 기본 세팅 주요 명령어 my-app ├── client │ ├── public │ │ ├── index.html │ │ └── robots.txt │ └── src │ ├── App.js │ ├── App.scss │ ├── components │ ├── index.js │ ├── index.scss │ └── setupTests.js └── server └── index.js 기본 세팅 tree 설치 npm install -g tree-cli 주요 명령어 기본 명령어 npm tree 특정 폴더 제외 tree -I 폴더명 여러 폴더 제외 tree -I '폴더A|폴..
Node.js, npm
2022. 4. 13. 11:05