tasknotes-cli

(★ 74)

A command-line interface for TaskNotes with an NLP task-creation mode, task filtering, and FZF integration

파일 탐색기

  • .gitignore
  • package-lock.json
  • package.json
  • README.md

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

bat

설명 보기 ▼

파일을 출력하고 연결.
구문 강조 및 Git 통합 기능을 갖춘 `cat`을 클론.
관련 항목: `cat`.
더 많은 정보: <https://manned.org/bat>.

bat {{path/to/file1 path/to/file2 ...}}

하나 이상의 파일 내용을 `stdout`으로 깔끔하게 출력:

bat {{path/to/file1 path/to/file2 ...}} > {{path/to/target_file}}

여러 파일을 대상 파일에 연결:

bat {{[-pp|--style plain --pager never]}} {{path/to/file}}

꾸밈을 제거하고 페이징을 비활성화:

🔍

fzf

설명 보기 ▼

명령줄 퍼지 찾기.
`sk`와 유사.
더 많은 정보: <https://github.com/junegunn/fzf#usage>.

find {{path/to/directory}} -type f | fzf

지정된 디렉터리의 모든 파일에서 `fzf`를 시작:

ps aux | fzf

프로세스 실행을 위해 `fzf`를 시작:

find {{path/to/directory}} -type f | fzf {{[-m|--multi]}} > {{path/to/file}}

`<Shift Tab>`을 사용해 여러 파일을 선택하고 파일에 작성:

🔍

git clone

설명 보기 ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

next

설명 보기 ▼

서버사이드 렌더링을 사용하여 최적화된 웹 애플리케이션을 구축하는 React 프레임워크.
더 많은 정보: <https://nextjs.org/docs/app/api-reference/cli/next>.

next dev

현재 애플리케이션을 개발 모드로 시작:

next dev {{[-p|--port]}} {{port}}

현재 애플리케이션을 특정 포트에서 시작:

next build

프로덕션에 맞게 최적화된 애플리케이션 빌드:

🔍

npm install

설명 보기 ▼

Install Node packages.

npm {{[i|install]}}

Install dependencies listed in `package.json`:

npm {{[i|install]}} {{package_name}}@{{version}}

Download a specific version of a package and add it to the list of dependencies in `package.json`:

npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}

Download the latest version of a package and add it to the list of dev dependencies in `package.json`:

🔍

npm link

설명 보기 ▼

Symlink a local package into the global `node_modules` or another project for development.

npm {{[ln|link]}}

Symlink the current package globally:

npm {{[ln|link]}} {{package_name}}

Link a globally linked package into another project's `node_modules`:

npm {{[r|unlink]}} {{package_name}}

Unlink a package from the current project:

// repository documentation