chaos-vpn

(★ 33)

Extreme real-time voice distortion engine for Android and iOS. Features 18+ chaos effects including bit-scrambling, vocoding, and reverse glitches for Discord, WhatsApp, and gaming.

파일 탐색기

  • .gitignore
  • analysis_options.yaml
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • LICENSE
  • pubspec.lock
  • pubspec.yaml
  • README.md
  • README2.MD
  • SECURITY.md

# CDN으로 사용하기

jsDelivr

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

명령어 용어집

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

🔍

dart

설명 보기 ▼

Dart 프로젝트 관리.
더 많은 정보: <https://dart.dev/tools/dart-tool>.

dart create {{project_name}}

같은 이름의 디렉터리에서 새로운 Dart 프로젝트를 초기화:

dart run {{path/to/file.dart}}

Dart 파일 실행:

dart pub get

현재 프로젝트에 대한 종속성을 다운로드:

🔍

flutter pub

설명 보기 ▼

Flutter's package manager.
Note: Packages are available on <https://pub.dev>.
See also: `flutter`.

flutter pub get

Download/Update all packages specified in `pubspec.yaml`:

flutter pub add {{package1 package2 ...}}

Add a package dependency to an app:

flutter pub remove {{package1 package2 ...}}

Remove a package dependency from an app:

🔍

flutter

설명 보기 ▼

Google의 무료 오픈 소스 크로스 플랫폼 모바일 앱 SDK.
`pub`과 같은 일부 하위 명령에는 자체 사용법 문서가 있음.
더 많은 정보: <https://github.com/flutter/flutter/blob/master/docs/tool/README.md>.

flutter create {{project_name}}

동일한 이름의 디렉터리에서 새로운 Flutter 프로젝트를 초기화:

flutter doctor

모든 외부 도구가 올바르게 설치되었는지 확인:

flutter channel {{stable|beta|dev|master}}

Flutter 채널 나열 또는 변경:

🔍

git checkout

설명 보기 ▼

Checkout a branch or paths to the working tree.

git checkout -b {{branch_name}}

Create and switch to a new branch:

git checkout -b {{branch_name}} {{reference}}

Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):

git checkout {{branch_name}}

Switch to an existing local branch:

🔍

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:

🔍

git commit

설명 보기 ▼

Commit files to the repository.

git commit

Open an editor to write a message and commit staged files to the repository:

git commit {{[-m|--message]}} "{{message}}"

Commit staged files to the repository with the specified message:

git commit {{[-F|--file]}} {{path/to/commit_message_file}}

Commit staged files with a message read from a file:

🔍

git push

설명 보기 ▼

Push commits to a remote repository.

git push

Send local changes in the current branch to its default remote counterpart:

git push {{remote_name}} {{local_branch}}

Send changes from a specific local branch to its remote counterpart:

git push {{[-u|--set-upstream]}} {{remote_name}} {{local_branch}}

Send changes from a specific local branch to its remote counterpart, and set the remote one as the default push/pull target of the local one:

🔍

keytool

설명 보기 ▼

Java에 포함된 인증서 관리 도구.
더 많은 정보: <https://docs.oracle.com/en/java/javase/25/docs/specs/man/keytool.html>.

keytool -genkeypair -v -keystore {{path/to/file.keystore}} -alias {{key_name}}

키스토어 생성:

keytool -storepasswd -keystore {{path/to/file.keystore}}

키스토어 비밀번호 변경:

keytool -keypasswd -alias {{key_name}} -keystore {{path/to/file.keystore}}

특정 키스토어 내 키의 비밀번호 변경:

// repository documentation