Web Client for Jellyfin
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Nodirbek Khajiev 49fab0fb9d Translated using Weblate (Uzbek) 4 hours ago
.ci Remove SKIP_PREPARE env variable usages 3 months ago
.github Update github/codeql-action action to v2.3.6 6 days ago
.vscode Add vscode configuration to fix issues on saving 11 months ago
debian Run web build script manually 3 months ago
deployment Update fedora Docker tag to v39 2 months ago
fedora Run web build script manually 3 months ago
scripts Remove NPM prepare script 3 months ago
src Translated using Weblate (Uzbek) 2 hours ago
.copr Run bump_version in make srpm 2 years ago
.editorconfig Fixed editorconfig spec 3 years ago
.escheckrc cleanup: formatting, escheck 3 months ago
.eslintignore Migrate navdrawer to ES6 3 years ago
.eslintrc.js Merge pull request #4570 from thornbill/prefer-starts-ends-with 4 weeks ago
.gitattributes Add more filetypes to gitattributes 3 years ago
.gitignore Add vscode configuration to fix issues on saving 11 months ago
.npmignore Azure pipelines (#470) 4 years ago
.npmrc Use engine-strict 8 months ago
.stylelintrc.json Enable Stylelint rules for vendor prefixes 6 months ago
.stylelintrc.scss.json Fix stylelint upgrade 2 years ago
CONTRIBUTORS.md Merge pull request #4318 from TelepathicWalrus/audio-normalization 2 weeks ago
LICENSE First separation commit. 4 years ago
README.md Refactor app structure 1 month ago
babel.config.js fix: babel jassub worker 3 months ago
build.sh build.sh: Allow docker build on non debian systems 2 years ago
build.yaml Bump version to 10.8.0 for next release 3 years ago
bump_version Run bump_version in make srpm 2 years ago
cssnano.config.js Fix CSS fallback 8 months ago
package-lock.json Update dependency @mui/material to v5.13.3 2 days ago
package.json Update dependency @mui/material to v5.13.3 2 days ago
postcss.config.js Fix eslint issues 2 months ago
tsconfig.json Add support for absolute imports 1 month ago
webpack.common.js fix: update JASSUB 2 weeks ago
webpack.dev.js Only allow jsx in jsx/tsx files 8 months ago
webpack.prod.js Only allow jsx in jsx/tsx files 8 months ago

README.md

Jellyfin Web

Part of the Jellyfin Project


Logo Banner

GPL 2.0 License Current Release Translation Status
Donate Feature Requests 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

  • Node.js
  • npm (included in Node.js)

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.

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

    npm start
    
  4. Build the client with sourcemaps available.

    npm run build:development
    

Directory Structure

.
└── src
    ├── apps
    │   ├── experimental  # New experimental app layout
    │   └── stable        # Classic (stable) app layout
    ├── assets            # Static assets
    ├── components        # Higher order visual components and React components
    ├── controllers       # Legacy page views and controllers 🧹
    ├── elements          # Basic webcomponents and React wrappers 🧹
    ├── hooks             # Custom React hooks
    ├── legacy            # Polyfills for legacy browsers
    ├── libraries         # Third party libraries 🧹
    ├── plugins           # Client plugins
    ├── routes            # React routes/pages
    ├── scripts           # Random assortment of visual components and utilities 🐉
    ├── strings           # Translation files
    ├── styles            # Common app Sass stylesheets
    ├── themes            # CSS themes
    ├── types             # Common TypeScript interfaces/types
    └── utils             # Utility functions
  • 🧹 — Needs cleanup
  • 🐉 — Serious mess (Here be dragons)