디렉토리의 트리 경로를 생성하는 방법
3422 단어 programmingtooling
멋진 기능이기 때문에 macOS에 쉽게 설치하고 GraphQL API의 디렉터리를 예제로 생성하는 방법을 보여드리겠습니다.
macOS 설치 방법
PC에 brew가 설치되어 있는지 확인하고 아래 명령을 실행하십시오.
daniloab$ brew install tree
일단 설치되면 어떤 트리로 명령을 테스트하십시오. 결과는 다음과 같아야 합니다.
daniloab:graphql-real-world-server daniloassis$ which tree
/opt/homebrew/bin/tree
트리가 성공적으로 설치되면 터미널
tree
을 입력하여 디렉토리 경로를 얻습니다.daniloab:graphql-real-world-server daniloassis$ tree
.
├── README.md
├── babel.config.js
├── package.json
├── schema.graphql
├── src
│ ├── app.ts
│ ├── config.ts
│ ├── index.ts
│ ├── modules
│ │ ├── LikeNewSubscription.ts
│ │ ├── LikeType.ts
│ │ ├── TalkType.ts
│ │ └── UserType.ts
│ ├── pubSub.ts
│ └── schema
│ ├── MutationType.ts
│ ├── QueryType.ts
│ ├── SubscriptionType.ts
│ └── schema.ts
├── tsconfig.json
├── webpack
│ └── ReloadServerPlugin.js
├── webpack.js
└── yarn.lock
4 directories, 20 files
For other ways of installing in macOS take a look at this link
https://superuser.com/questions/359723/mac-os-x-equivalent-of-the-ubuntu-tree-command
우분투 설치 방법
apt-get을 통해 설치를 쉽게 할 수 있습니다. 터미널에서 다음을 실행합니다.
$ sudo apt-get install tree
트리를 성공적으로 설치하면 트리를 사용하여 디렉토리를 나열할 수 있습니다.
자동화
간단하고 빠르기 때문에 트리는 이전에는 일상에서 더 많은 운영 시간이 소요될 수 있었던 작업에서 매일 도움을 주기 시작합니다.
항상 시간을 잡아먹는 모든 수동 작업을 자동화하고 가장 중요한 것에 집중할 수 있도록 자유롭게 두지 마십시오.
예시로 사용된 저장소는 GraphQL에 대한 내 이야기의 결과입니다. 여기GraphQL Real World를 클릭하여 슬라이드를 즐겨보세요.
연결:
슬라이드 https://github.com/daniloab/graphql-real-world-server
실제 GraphQL 서버가 있는 저장소https://github.com/daniloab/graphql-real-world-server
참조
사진 제공: Joel & Jasmin Førestbird on Unsplash
Reference
이 문제에 관하여(디렉토리의 트리 경로를 생성하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/daniloab/how-to-generate-the-tree-path-of-your-directory-161o텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)