The Free Software Media System - Official Web Client https://jellyfin.org
  • JavaScript 43.9%
  • TypeScript 29.4%
  • SCSS 22.4%
  • HTML 4.2%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-09-15 05:00:27 +00:00
.devcontainer Upgrade everything from npm 10 to 11 and Node 20 to 24 active LTS 2026-01-11 14:36:08 -05:00
.github add org project automation 2026-09-08 18:56:15 -04:00
.vscode Enforce ESLint as default formatter in VSCode settings 2025-02-20 22:39:09 +01:00
scripts Remove NPM prepare script 2023-03-10 12:32:06 -05:00
src Translated using Weblate (Faroese) 2026-09-15 05:00:27 +00:00
.editorconfig Update editorconfig for yaml indentation 2024-03-08 11:28:46 -05:00
.escheckrc Conditionally prewarm libbitsub workers and exclude module-worker glue asset from the ES5 syntax scan 2026-08-01 23:05:04 +07:00
.gitattributes Add more filetypes to gitattributes 2020-04-25 15:02:42 +02:00
.gitignore Add a basic nix flake for development (#6531) 2025-03-03 14:14:24 -05:00
.npmignore
.npmrc add security improvements to npmrc 2026-08-06 10:17:19 +09:00
.nvmrc Upgrade everything from npm 10 to 11 and Node 20 to 24 active LTS 2026-01-11 14:36:08 -05:00
.sonarcloud.properties Exclude test files from Sonar scanning 2023-10-25 20:09:50 -04:00
.stylelintrc.json Migrate from stylelint-codeguide to @stylistic/stylelint-plugin 3.1.1 2024-12-10 14:51:12 +11:00
babel.config.js Cleanup babel plugins 2024-09-11 10:29:30 -04:00
bump_version Convert bump_version to bumper only 2024-03-19 11:48:34 -04:00
CONTRIBUTING.md Update contributing guide 2026-06-30 13:07:24 -04:00
CONTRIBUTORS.md Fixed infinite load when editing/adding user with invalid username (#8098) 2026-07-30 19:11:50 +00:00
cssnano.config.js Fix CSS fallback 2022-10-08 23:45:54 +03:00
eslint.config.mjs Fix ResizeObserver polyfilling 2026-08-27 19:06:17 -04:00
flake.lock update nix flake lock 2026-07-10 08:47:19 -04:00
flake.nix Upgrade everything from npm 10 to 11 and Node 20 to 24 active LTS 2026-01-11 14:36:08 -05:00
LICENSE
package-lock.json Bump version to 13.0 2026-09-07 21:05:15 -04:00
package.json Bump version to 13.0 2026-09-07 21:05:15 -04:00
postcss.config.js Remove var mixin 2026-03-19 12:53:21 -04:00
README.md Move directory structure and add rebase instructions 2026-03-20 09:38:52 -04:00
tsconfig.json Add support for absolute imports 2023-05-02 16:44:07 -04:00
vite.config.ts Fix vite path support 2025-12-03 17:53:19 -05:00
webpack.analyze.js Add webpack config for analyzing builds and improve ts speed 2023-09-12 12:54:50 -04:00
webpack.common.js Merge remote-tracking branch 'upstream/master' into libbitsub 2026-07-03 09:39:23 +07:00
webpack.dev.js Lookup themes dynamically 2025-03-25 15:36:32 -04:00
webpack.prod.js Lookup themes dynamically 2025-03-25 15:36:32 -04:00

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
    

Review the Contributing Guide for more information on our process and tech stack.