dstream-bot
A Discord bot that sends chat messages to a web server and displays them on an OBS/browser screen.
파일 탐색기
- settings.json
- demo.gif
- start.ts
- stop.ts
- environment.ts
- max-list-messages-length.ts
- command-handler.ts
- messages-handler.ts
- parse-custom-message.ts
- discord-socket-service.ts
- socket-server.ts
- bot-state.ts
- bootstrap.ts
- client.ts
- seeder.ts
- types.d.ts
- .env.example
- .gitignore
- bun.lockb
- main.ts
- package.json
- README.md
- tsconfig.json
- vite.svg
- react.svg
- App.tsx
- environment.ts
- main.tsx
- vite-env.d.ts
- .env
- .gitignore
- bun.lockb
- eslint.config.js
- index.html
- package.json
- tsconfig.app.json
- tsconfig.json
- tsconfig.node.json
- vite.config.ts
- LICENSE
- README-ptBR.md
- README.md
# 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`에 종속성으로 나열된 모든 패키지를 다운로드하고 설치:
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:
