Web Client for Jellyfin
Go to file
2020-07-19 13:01:47 +02:00
.ci Explicitly add what Azure used to do implicitly 2020-07-13 14:34:20 -04:00
.copr Add COPR makefile link 2020-03-24 01:45:32 -04:00
.dependabot Add dependabot config 2020-05-01 08:35:17 +02:00
.github Overhaul issue templates 2020-07-19 13:01:47 +02:00
debian update links 2020-04-19 20:29:30 +09:00
deployment Make the portable web archive and dir consistent 2020-06-20 02:31:25 -04:00
fedora add packaging step on azure and refactor pipelines 2020-06-13 00:18:20 +09:00
scripts update translation utilities 2020-05-17 22:41:23 +09:00
src Translated using Weblate (Portuguese (Brazil)) 2020-07-17 14:03:00 -04:00
.editorconfig Add JSON to EditorConfig 2020-04-25 14:05:29 +02:00
.eslintignore Update eslintignore 2020-04-25 14:05:01 +02:00
.eslintrc.js Fixed review comments 2020-06-06 11:25:53 +02:00
.gitattributes Add more filetypes to gitattributes 2020-04-25 15:02:42 +02:00
.gitignore use symlink for web config rather than a separate file 2020-06-06 15:57:15 +09:00
.npmignore Azure pipelines (#470) 2019-09-19 14:35:30 -04:00
.stylelintrc Add missing final newlines 2020-02-22 11:47:03 -05:00
build.sh Remove copy-pasta comments 2020-04-09 12:14:21 -04:00
build.yaml Add CentOS to build.yaml 2020-03-24 01:13:10 -04:00
bump_version Update bump_version 2020-04-25 22:15:38 -04:00
CONTRIBUTORS.md Update CONTRIBUTORS.md 2020-05-27 11:12:15 +02:00
gulpfile.js Add defer to apploader script 2020-06-29 11:20:57 +02:00
LICENSE First separation commit. 2019-01-09 12:36:54 +01:00
package.json Merge pull request #1559 from jellyfin/dependabot/npm_and_yarn/whatwg-fetch-3.2.0 2020-07-14 18:01:32 +09:00
postcss.config.js Fix browserslist for autoprefixer 2020-05-08 13:50:04 +03:00
README.md Include explicit yarn version 2020-05-26 16:56:49 -04:00
webpack.common.js Remove unused dependencies and cleanup webpack output 2020-05-28 23:34:05 +02:00
webpack.dev.js Let webpack run Babel on xmldom 2020-07-05 13:40:12 +02:00
webpack.prod.js Let webpack run Babel on xmldom 2020-07-05 13:40:12 +02:00
yarn.lock Bump lodash from 4.17.15 to 4.17.19 2020-07-17 00:54:14 +00:00

Jellyfin Web

Part of the Jellyfin Project


Logo Banner

GPL 2.0 License Current Release Translation Status
Donate Feature Requests Discuss on our Forum Chat on Matrix Join our Subreddit

Jellyfin Web is the frontend used for most of the clients available for end users, such as desktop browsers, Android, and iOS. We welcome all contributions and pull requests! If you have a larger feature in mind please open an issue so we can discuss the implementation before you start. Translations can be improved very easily from our Weblate instance. Look through the following graphic to see if your native language could use some work!

Detailed Translation Status

Build Process

Dependencies

Getting Started

  1. Clone or download this repository.

    git clone https://github.com/jellyfin/jellyfin-web.git
    cd jellyfin-web
    
  2. Install build dependencies in the project directory.

    yarn install
    
  3. Run the web client with webpack for local development.

    yarn serve
    
  4. Build the client with sourcemaps.

    yarn build:development
    

    You can build a nginx compatible version as well.

    yarn build:standalone