Clashdrive
A serverless, client-side web application that transforms Telegram supergroup forum topics into a personal cloud storage workspace. Run entirely in your browser with direct Telegram Datacenter connection via MTProto.
파일 탐색기
- tsconfig.app.tsbuildinfo
- tsconfig.vite.tsbuildinfo
- ExampleInstrumentedTest.java
- ImmersiveModePlugin.java
- MainActivity.java
- NativeVideoPlayerPlugin.java
- PlayerActivity.java
- ic_launcher_background.xml
- splash.png
- splash.png
- splash.png
- splash.png
- splash.png
- splash.png
- splash.png
- splash.png
- splash.png
- splash.png
- splash.png
- ic_launcher_foreground.xml
- activity_main.xml
- ic_launcher.xml
- ic_launcher_round.xml
- ic_launcher.png
- ic_launcher_background.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_background.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_background.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_background.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_background.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- ic_launcher.png
- ic_launcher_background.png
- ic_launcher_foreground.png
- ic_launcher_round.png
- colors.xml
- ic_launcher_background.xml
- strings.xml
- styles.xml
- colors.xml
- file_paths.xml
- AndroidManifest.xml
- ExampleUnitTest.java
- .gitignore
- build.gradle
- capacitor.build.gradle
- proguard-rules.pro
- gradle-wrapper.jar
- gradle-wrapper.properties
- .gitignore
- build.gradle
- capacitor.settings.gradle
- gradle.properties
- gradlew
- gradlew.bat
- settings.gradle
- variables.gradle
- icon-background.png
- icon-foreground.png
- icon-only.png
- assetlinks.json
- apple-touch-icon.png
- icon-192.png
- icon-512.png
- icon-maskable-512.png
- favicon.svg
- google4687a45ca8c2b04c.html
- icons.svg
- manifest.webmanifest
- sw.js
- build-android.sh
- AuthWizard.tsx
- CredentialsStep.tsx
- OtpStep.tsx
- PasswordStep.tsx
- PhoneStep.tsx
- index.ts
- math.ts
- MediaViewer.tsx
- PhotoViewer.tsx
- SwiperGallery.css
- SwiperGallery.tsx
- types.ts
- useCarousel.ts
- useGestureController.ts
- Breadcrumb.tsx
- CreateFolderModal.tsx
- Dashboard.tsx
- FileCardThumbnail.tsx
- FileGrid.tsx
- FileIcon.tsx
- FileInfoModal.tsx
- FloatingTransferWidget.tsx
- MoveCopyModal.tsx
- PreviewModal.tsx
- ReceiveShareModal.tsx
- RenameModal.tsx
- SettingsModal.tsx
- ShareModal.tsx
- Sidebar.tsx
- StatsWidget.tsx
- TopicList.tsx
- UploadZone.tsx
- Header.tsx
- LoadingScreen.tsx
- ActionSheet.tsx
- Button.tsx
- Input.tsx
- Modal.tsx
- ProgressBar.tsx
- telegram.ts
- useAuth.ts
- useDrive.ts
- useFiles.ts
- useSafeInsets.ts
- useTheme.ts
- back.ts
- bot.ts
- cache.ts
- client.ts
- db.ts
- downloader.ts
- emptyModule.ts
- manifest.ts
- native.ts
- nativePlayer.ts
- radar.ts
- sheetStack.ts
- thumbnailGenerators.ts
- topics.ts
- uploader.ts
- videoCover.ts
- index.ts
- streamsaver.d.ts
- App.tsx
- index.css
- main.tsx
- .gitignore
- .npmrc
- capacitor.config.ts
- eslint.config.js
- index.html
- package-lock.json
- package.json
- tsconfig.app.json
- tsconfig.json
- tsconfig.vite.json
- vite.config.ts
- favicon.svg
- google4687a45ca8c2b04c.html
- icons.svg
- sw.js
- AuthWizard.tsx
- CredentialsStep.tsx
- OtpStep.tsx
- PasswordStep.tsx
- PhoneStep.tsx
- Breadcrumb.tsx
- CreateFolderModal.tsx
- Dashboard.tsx
- FileCardThumbnail.tsx
- FileGrid.tsx
- FileIcon.tsx
- FileInfoModal.tsx
- FloatingTransferWidget.tsx
- MoveCopyModal.tsx
- PreviewModal.tsx
- ReceiveShareModal.tsx
- RenameModal.tsx
- SettingsModal.tsx
- ShareModal.tsx
- Sidebar.tsx
- StatsWidget.tsx
- TopicList.tsx
- UploadZone.tsx
- Header.tsx
- LoadingScreen.tsx
- Button.tsx
- Input.tsx
- Modal.tsx
- Pagination.tsx
- ProgressBar.tsx
- telegram.ts
- useAuth.ts
- useDrive.ts
- useFiles.ts
- useTheme.ts
- bot.ts
- cache.ts
- client.ts
- db.ts
- downloader.ts
- emptyModule.ts
- manifest.ts
- radar.ts
- thumbnailGenerators.ts
- topics.ts
- uploader.ts
- index.ts
- streamsaver.d.ts
- App.tsx
- index.css
- main.tsx
- .env.example
- .gitignore
- .npmrc
- CODE_OF_CONDUCT.md
- eslint.config.js
- index.html
- LICENSE
- package.json
- README.md
- SECURITY.md
- tsconfig.app.json
- tsconfig.json
- tsconfig.vite.json
- vite.config.ts
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
bun install
설명 보기 ▼
bun install
Install JavaScript dependencies for a project from `package.json`.
bun {{[i|install]}}
Install all dependencies listed in `package.json`:
bun {{[i|install]}} {{package_name}}@{{version}}
Install a single package (this is an alias for `bun add`):
bun {{[i|install]}} {{[-g|--global]}} {{package_name}}
Install a package globally:
bun run
설명 보기 ▼
bun run
Execute a JavaScript/TypeScript file, or a script from `package.json`.
bun run {{script_name}}
Run a script defined in `package.json`:
bun run {{path/to/file.ts}}
Run a JavaScript or TypeScript file directly:
bun run --watch {{path/to/file.ts}}
Run a file in "watch" mode (restarts automatically when the file changes):
bun
설명 보기 ▼
bun
JavaScript 런타임 및 툴킷.
번들러, 테스트 러너 및 패키지 관리자가 포함.
더 많은 정보: <https://bun.com/docs>.
bun init
JavaScript 파일 또는 `package.json` 스크립트 실행:
bun run {{path/to/file|script_name}}
단위 테스트 실행:
bun test
`package.json`에 종속성으로 나열된 모든 패키지를 다운로드하고 설치:
