dial-slider
No description available.
File Explorer
- bug_report.yml
- config.yml
- feature_request.yml
- ci.yml
- release.yml
- PULL_REQUEST_TEMPLATE.md
- extensions.json
- settings.json
- android-icon-background.png
- android-icon-foreground.png
- android-icon-monochrome.png
- favicon.png
- icon.png
- splash-icon.png
- _layout.tsx
- index.tsx
- app.json
- package.json
- tsconfig.json
- release-notes-0.1.0.md
- RELEASING.md
- REPOSITORY_METADATA.md
- fix-esm-declarations.ts
- DialPresetViewport.tsx
- PresetButton.tsx
- PresetRing.tsx
- DialRuler.tsx
- DialRulerEdgeFade.tsx
- DialRulerOriginDot.tsx
- DialRulerTick.tsx
- constants.ts
- DialSlider.tsx
- index.ts
- types.ts
- useDialRulerMotion.ts
- dial-math.ts
- preset-config.ts
- preset-state.ts
- ring-math.ts
- index.ts
- dial-math.test.ts
- preset-state.test.ts
- public-api.test.ts
- public-api.types.tsx
- ring-math.test.ts
- LICENSE
- package.json
- README.md
- tsconfig.build.json
- tsconfig.json
- .gitignore
- .prettierignore
- .prettierrc.json
- bun.lock
- CHANGELOG.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- demo.gif
- eslint.config.js
- LICENSE
- package.json
- README.md
- SECURITY.md
- tsconfig.base.json
- tsconfig.json
# 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:
