lobe-vidol

(โ˜… 985)

๐Ÿงธ Lobe Vidol - Making Virtual Idols Accessible for EveryOne

File Explorer

  • .bunfig.toml
  • .changelogrc.js
  • .commitlintrc.js
  • .editorconfig
  • .eslintignore
  • .eslintrc.js
  • .gitignore
  • .i18nrc.js
  • .npmrc
  • .prettierignore
  • .prettierrc.js
  • .releaserc.js
  • .remarkrc.js
  • .stylelintrc.js
  • CHANGELOG.md
  • LICENSE
  • next.config.mjs
  • package.json
  • README.md
  • README.zh-CN.md
  • renovate.json
  • tsconfig.json
  • 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 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:

// repository documentation