lobe-tts

(β˜… 802)

🎀 Lobe TTS - A high-quality & reliable TTS/STT library for Server and Browser

File Explorer

  • .bunfig.toml
  • .changelogrc.js
  • .commitlintrc.js
  • .dumirc.ts
  • .editorconfig
  • .eslintignore
  • .eslintrc.js
  • .gitignore
  • .i18nrc.js
  • .npmrc
  • .prettierignore
  • .prettierrc.js
  • .releaserc.js
  • .remarkrc.js
  • .stylelintrc.js
  • CHANGELOG.md
  • clean-package.config.js
  • LICENSE
  • package.json
  • README.md
  • renovate.json
  • tsconfig.json
  • tsdown.config.ts
  • vercel.json
  • vitest.config.ts

# Use via CDN

jsDelivr

jsDelivr 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 add

View Details β–Ό

Add and install new dependencies to the current project.

bun {{[a|add]}} {{package}}

Install a single package:

bun {{[a|add]}} {{package1 package2 ...}}

Install multiple packages:

bun {{[a|add]}} {{git_url}}

Install from a Git repository:

πŸ”

bun install

View Details β–Ό

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

View Details β–Ό

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 β–Ό

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:

πŸ”

pnpm

View Details β–Ό

Fast, disk space efficient package manager for Node.js.
Manage Node.js projects and their module dependencies.

pnpm init

Create a `package.json` file:

pnpm {{[i|install]}}

Download all the packages listed as dependencies in `package.json`:

pnpm add {{module_name}}@{{version}}

Download a specific version of a package and add it to the list of dependencies in `package.json`:

// repository documentation