dstream-bot
A Discord bot that sends chat messages to a web server and displays them on an OBS/browser screen.
File Explorer
- 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
# 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.
bun install
View Details ▼
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
View Details ▼
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
View Details ▼
bun
JavaScript runtime and toolkit.
Includes a bundler, a test runner, and a package manager.
bun init
Create a new Bun project in the current directory:
bun run {{path/to/file|script_name}}
Run a JavaScript file or a `package.json` script:
bun test
Run unit tests:
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:
