{"id":20450137,"url":"https://github.com/rtm516/youtubejukebox","last_synced_at":"2026-04-18T00:31:06.748Z","repository":{"id":26014594,"uuid":"80659855","full_name":"rtm516/YoutubeJukebox","owner":"rtm516","description":"Provides a simple way of implementing a jukebox running from nodejs and youtube","archived":false,"fork":false,"pushed_at":"2022-04-28T12:48:13.000Z","size":220,"stargazers_count":1,"open_issues_count":2,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-09-29T05:41:30.826Z","etag":null,"topics":["jukebox","nodejs","youtube"],"latest_commit_sha":null,"homepage":"https://rtm516.co.uk/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rtm516.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-02-01T20:17:08.000Z","updated_at":"2022-04-28T12:48:21.000Z","dependencies_parsed_at":"2022-07-27T05:46:33.225Z","dependency_job_id":null,"html_url":"https://github.com/rtm516/YoutubeJukebox","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rtm516/YoutubeJukebox","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtm516%2FYoutubeJukebox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtm516%2FYoutubeJukebox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtm516%2FYoutubeJukebox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtm516%2FYoutubeJukebox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rtm516","download_url":"https://codeload.github.com/rtm516/YoutubeJukebox/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtm516%2FYoutubeJukebox/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31951217,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-17T17:29:20.459Z","status":"ssl_error","status_checked_at":"2026-04-17T17:28:47.801Z","response_time":62,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["jukebox","nodejs","youtube"],"created_at":"2024-11-15T10:50:49.199Z","updated_at":"2026-04-18T00:31:06.729Z","avatar_url":"https://github.com/rtm516.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Youtube jukebox\n[![Known Vulnerabilities](https://snyk.io/test/github/rtm516/youtubejukebox/badge.svg)](https://snyk.io/test/github/rtm516/youtubejukebox)  \nThis project provides a simple way of implementing a jukebox running from nodejs and youtube.\n\n## Libraries\n* [Boostrap v3.3.7](http://getbootstrap.com/)\n* [jQuery v3.1.1](https://jquery.com/)\n* [HTML5 Shiv v3.7.3](https://github.com/aFarkas/html5shiv)\n* [Respond.js v1.4.2](https://github.com/scottjehl/Respond)\n\n## Node modules\n* [Express](http://expressjs.com/)\n* [EJS](http://www.embeddedjs.com/)\n* [body-parser](https://github.com/expressjs/body-parser)\n* [Request](https://github.com/request/request)\n* [Helmet](https://github.com/helmetjs/helmet)\n* [htmlencode](https://www.npmjs.com/package/htmlencode)\n* [nodemon](https://github.com/remy/nodemon) (Optional)\n\n## Setup\nDownload the repository and extract if in a zip, then run.\n`npm install`\nThis will install all the required modules.\nIf you would like to use the supplied batch file to make the server reboot automatically then run either\n`npm install nodemon`\nor \n`npm install -g nodemon`\nto install it globally\n\n## Config\n* `port`\n  * The port to run the webserver on\n  * Type: `integer`\n  * Default: `3000`\n* `youtubeAPIKey`\n  * Your API key for the youtube API.\n  * Can be obtained from [here](https://console.developers.google.com/apis/credentials) and [this](https://console.developers.google.com/apis/api/youtube) API needs to be enabled.\n  * Type: `string`\n  * Default: `'youtube api key here'`\n* `defaultPlaylist`\n  * The default playlist to play if there is no songs queued. If it is set to `''` then it will be disabled.\n  * Type: `string`\n  * Default: `'PLx0sYbCqOb8Q_CLZC2BdBSKEEB59BOPUM'` ([UK Top 40 Songs](https://www.youtube.com/playlist?list=PLx0sYbCqOb8Q_CLZC2BdBSKEEB59BOPUM))\n* `defaultRandomOrder`\n  * True if you want the default playlists songs to be played in a random order.\n  * Type: `boolean`\n  * Default: `true`\n* `playerControls`\n  * Should the youtube player controls be shown.\n  * Type: `boolean`\n  * Default: `false`\n* `playerLockedHosts`\n  * Should the player page be restricted to certain connection domains.\n  * EG: jukebox.yoursite.com would be denied but if navigated to localhost then it would be accepted.\n  * Type: `boolean`\n  * Default: `true`\n* `playerLockedHostsList`\n  * Domain list for above setting.\n  * Type: `string array`\n  * Default: `[\"localhost\", \"127.0.0.1\"]`\n\n## Links\n* [My website](https://rtm516.co.uk/)\n* [Node.js](https://nodejs.org/en/)\n* [Youtube data API](https://developers.google.com/youtube/v3/)\n* [Youtube iframe API](https://developers.google.com/youtube/iframe_api_reference)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frtm516%2Fyoutubejukebox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frtm516%2Fyoutubejukebox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frtm516%2Fyoutubejukebox/lists"}