cupid-music-player
No description available.
File Explorer
- frame-1.png
- frame-2.png
- frame-3.png
- frame-1.png
- frame-2.png
- frame-3.png
- frame-1.png
- frame-2.png
- frame-3.png
- frame-1.png
- frame-2.png
- frame-3.png
- frame-1.png
- frame-2.png
- frame-3.png
- frame-4.png
- frame-1.png
- frame-2.png
- frame-3.png
- frame-4.png
- album_frame.png
- backwards_button.png
- exit_button.png
- favicon.png
- forwards_button.png
- frame.png
- frame_no_background.png
- icon.png
- minimizer_button.png
- mute_button.png
- pause_button.png
- plant.png
- play_button.png
- progress_bar.png
- record_player.png
- repeat_button.png
- settings.png
- shuffle_button.png
- volume_bar_high.png
- volume_bar_low.png
- volume_button.png
- window_button.png
- album_frame.png
- backwards_button.png
- exit_button.png
- favicon.png
- forwards_button.png
- frame.png
- frame_no_background.png
- icon.png
- minimizer_button.png
- mute_button.png
- pause_button.png
- plant.png
- play_button.png
- progress_bar.png
- record_player.png
- repeat_button.png
- settings.png
- shuffle_button.png
- volume_bar_high.png
- volume_bar_low.png
- volume_button.png
- window_button.png
- progress_bar.png
- progress_bar_stars.png
- spotify_icon.svg
- star.png
- star_selected.png
- .gitkeep
- playlist.json
- main.cjs
- preload.cjs
- rainyhearts.ttf
- install-yt-dlp.cjs
- setup.cjs
- api.js
- api.test.js
- auth.js
- api.js
- api.test.js
- auth.js
- api.js
- auth.js
- index.js
- App.css
- App.jsx
- index.css
- main.jsx
- useAudioPlayer.js
- useSpotifyPlayer.js
- useTheme.js
- .env.example
- .gitignore
- APPLE_MUSIC_SETUP.md
- index.html
- package-lock.json
- package.json
- README.md
- SPOTIFY_SETUP.md
- TROUBLESHOOTING.md
- vite.config.js
- YOUTUBE_SETUP.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.
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:
git
View Details ▼
git
Distributed version control system.
Some subcommands such as `commit`, `add`, `branch`, `switch`, `push`, etc. have their own usage documentation.
git init
Create an empty Git repository:
git clone {{https://example.com/repo.git}}
Clone a remote Git repository from the internet:
git status
View the status of the local repository:
node
View Details ▼
node
Server-side JavaScript platform (Node.js).
node {{path/to/file}}
Run a JavaScript file:
node
Start a REPL (interactive shell):
node --watch {{path/to/file}}
Execute the specified file restarting the process when an imported file is changed (requires Node.js version 18.11+):
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed 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`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
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`:
yt-dlp
View Details ▼
yt-dlp
A youtube-dl fork with additional features and fixes.
Download videos from YouTube and other websites.
See also: `ytfzf`.
yt-dlp "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"
Download a video or playlist (with the default options from command below):
yt-dlp {{[-F|--list-formats]}} "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"
List the available downloadable formats for a video:
yt-dlp {{[-f|--format]}} "{{bv*[ext=mp4]+ba[ext=m4a]/b[ext=mp4]}}" "{{https://www.youtube.com/watch?v=oHg5SJYRHA0}}"
Download a video or playlist using the best MP4 video available (default is "bv\*+ba/b"):
