fochus
Manage Your Productivity and Focus Time
파일 탐색기
- bug_report.md
- feature_request.md
- ci.yml
- codeql.yml
- release.yml
- stale.yml
- dependabot.yml
- PULL_REQUEST_TEMPLATE.md
- SECURITY.md
- schema.prisma
- seed.ts
- prisma.ts
- admin.ts
- auth.ts
- errorHandler.test.ts
- errorHandler.ts
- admin.ts
- auth.ts
- notes.ts
- pomodoro.ts
- settings.ts
- taskLists.ts
- tasks.ts
- index.ts
- .dockerignore
- .env.example
- docker-entrypoint.sh
- Dockerfile
- package-lock.json
- package.json
- tsconfig.json
- vitest.config.ts
- index.html
- dark.png
- light.png
- logo-dark.svg
- logo-light.svg
- logo.png
- logo.svg
- manifest.webmanifest
- sw.js
- start.bat
- start.sh
- stop.sh
- uninstall.bat
- uninstall.sh
- EmptyState.tsx
- ErrorBoundary.tsx
- NewNoteWindow.tsx
- NewTaskWindow.tsx
- PomodoroModal.tsx
- RecurringTaskOptions.tsx
- RichTextEditor.tsx
- Sidebar.tsx
- Spotlight.tsx
- SubTaskList.tsx
- TaskListModal.tsx
- ThemeProvider.tsx
- useIsMobile.ts
- useNotes.ts
- usePomodoro.ts
- useTaskLists.ts
- useTasks.ts
- utils.ts
- en.json
- tr.json
- Dashboard.tsx
- Login.tsx
- MobileRestricted.tsx
- NoteEditorPage.tsx
- Notes.tsx
- OnboardingPage.tsx
- Settings.tsx
- Stats.tsx
- TasksWithLists.tsx
- Trash.tsx
- api.ts
- NotificationService.ts
- index.ts
- apiTransforms.test.ts
- apiTransforms.ts
- App.tsx
- i18n.ts
- index.css
- main.tsx
- vite-env.d.ts
- .dockerignore
- .env.example
- .gitattributes
- .gitignore
- .prettierrc
- AGENTS.md
- docker-compose.yml
- Dockerfile
- Dockerfile.selfhost
- eslint.config.js
- index.html
- install.sh
- LICENSE
- nginx.conf
- package-lock.json
- package.json
- postcss.config.cjs
- README.md
- screenshot_dark.png
- screenshot_light.png
- setup.js
- spotlight.png
- tsconfig.json
- uninstall.sh
- vite.config.ts
- vitest.config.ts
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
git clone
설명 보기 ▼
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:
npm install
설명 보기 ▼
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 run
설명 보기 ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
npx
설명 보기 ▼
npx
이 명령은 `npm exec`의 별칭입니다.
tldr npm exec
자세한 내용은 원본 명령을 참고하세요:
