Nextjs_SpotifyClone
Nextjs Tailwindcss Shadcn Prisma Neon EdgeStore
File Explorer
- AddAudio.ts
- CreatePlaylist.ts
- DeleteAudio.ts
- DeletePlaylist.ts
- EditBanner.ts
- EditPlaylist.ts
- RemoveAudio.ts
- UpdateCreateAudio.ts
- page.tsx
- page.tsx
- layout.tsx
- page.tsx
- page.tsx
- page.tsx
- page.tsx
- layout.tsx
- page.tsx
- layout.tsx
- route.ts
- favicon.ico
- globals.css
- layout.tsx
- DialogTag.tsx
- UpdatePlaylist.tsx
- UploadAudio.tsx
- Box.tsx
- Library.tsx
- PlaylistCard.tsx
- sidebar.tsx
- SidebarItem.tsx
- alert-dialog.tsx
- button.tsx
- command.tsx
- dialog.tsx
- dropdown-menu.tsx
- form.tsx
- input.tsx
- label.tsx
- popover.tsx
- progress.tsx
- select.tsx
- separator.tsx
- skeleton.tsx
- slider.tsx
- textarea.tsx
- tooltip.tsx
- AudioCardBlock.tsx
- AudioCardFlex.tsx
- AudioClient.tsx
- AudioPlayer.tsx
- AudioPlayerSkeleton.tsx
- AuthorAudio.tsx
- BannerButtons.tsx
- Card.tsx
- CategoryNav.tsx
- Header.tsx
- Hint.tsx
- ImageBackgroundDetector.tsx
- LikedIcon.tsx
- Loader.tsx
- MediaUplaoder.tsx
- Menu.tsx
- PlaylistCardBlock.tsx
- PlaylistClient.tsx
- PlaylistMedia.tsx
- ProgressBar.tsx
- ReorderPlaylist.tsx
- SearchClient.tsx
- SidebarSkeleton.tsx
- theme-provider.tsx
- Cat.ts
- db.ts
- edgestore.ts
- InitialProfile.ts
- utils.ts
- schema.prisma
- audioWave.gif
- next.svg
- Spotify Clone.jpg
- SpotifyClonebanner.jpg
- vercel.svg
- useImageColor.ts
- usePlayQueue.ts
- .env.local
- .eslintrc.json
- .gitignore
- components.json
- middleware.ts
- next.config.mjs
- package-lock.json
- package.json
- postcss.config.mjs
- README.md
- tailwind.config.ts
- 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.
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:
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
npm
View Details ▼
npm
JavaScript and Node.js package manager.
Manage Node.js projects and their module dependencies.
Some subcommands such as `install`, `run`, etc. have their own usage documentation.
npm init {{[-y|--yes]}}
Create a `package.json` file with default values (omit `--yes` to do it interactively):
npm {{[i|install]}}
Download all the packages listed as dependencies in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npx
View Details ▼
npx
This command is an alias of `npm exec`.
tldr npm exec
View documentation for the original command:
