fochus
Manage Your Productivity and Focus Time
File Explorer
- 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
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
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
View Details ▼
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
View Details ▼
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
View Details ▼
npx
This command is an alias of `npm exec`.
tldr npm exec
View documentation for the original command:
