Web Client for Jellyfin
Go to file
2020-03-23 23:34:29 -04:00
.ci apply suggestions from code review 2020-03-17 03:05:18 +09:00
.github Update stale.yml 2019-11-04 02:34:52 -05:00
debian Update and simplify Debian directory 2020-03-23 23:34:29 -04:00
scripts add a folder for useful scripts 2020-01-20 10:38:53 +09:00
src Bump version to 10.6.0 2020-03-23 23:31:18 -04:00
.editorconfig add editorconfig 2019-05-24 09:59:04 -07:00
.eslintignore Add some linting rules for the CI (#587) 2019-11-22 18:29:38 +03:00
.eslintrc.yml initial changes for web packaging 2020-03-16 23:30:14 +09:00
.gitattributes Set union merge for CONTRIBUTORS.md 2019-01-11 20:06:35 +03:00
.gitignore Ignore transient build artifacts 2020-03-23 21:46:31 -04: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
CONTRIBUTORS.md Fix details page ribbon position in TV layout 2020-02-15 22:34:10 +01:00
gulpfile.js fix issues with standalone build 2020-03-17 02:12:05 +09:00
LICENSE First separation commit. 2019-01-09 12:36:54 +01:00
package.json Merge pull request #938 from dkanada/query 2020-03-19 09:50:45 +03:00
postcss.config.js Fix style in postcss config 2020-03-13 09:46:11 +01:00
README.md update build process in readme 2020-03-17 01:27:14 +09:00
webpack.common.js Run postcss for webpack bundle 2020-03-13 09:26:00 +01:00
webpack.dev.js Run postcss for webpack bundle 2020-03-13 09:26:00 +01:00
webpack.prod.js Run postcss for webpack bundle 2020-03-13 09:26:00 +01:00
yarn.lock Revert changes to yarn.lock 2020-03-14 15:04:14 +01: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

  • Yarn
  • Gulp-cli

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