shadcn-resizable-sidebar
A drop-in resizable shadcn/ui `sidebar.tsx` replacement
File Explorer
- github.ts
- favicon.ico
- globals.css
- layout.tsx
- opengraph-image.png
- page.tsx
- twitter-image.png
- index.tsx
- avatar.tsx
- breadcrumb.tsx
- button.tsx
- collapsible.tsx
- dropdown-menu.tsx
- input.tsx
- separator.tsx
- sheet.tsx
- sidebar.tsx
- skeleton.tsx
- tooltip.tsx
- app-sidebar-inset.tsx
- app-sidebar.tsx
- socials.tsx
- theme-switcher.tsx
- use-mobile.tsx
- use-sidebar-resize.ts
- utils.ts
- shadcn.jpg
- .gitignore
- bun.lockb
- components.json
- eslint.config.mjs
- LICENSE
- next.config.ts
- package.json
- postcss.config.mjs
- README.md
- tsconfig.json
- UPGRADE.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
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:
