The Free Software Media System - Official Web Client https://jellyfin.org
  • JavaScript 44%
  • TypeScript 29%
  • SCSS 22.7%
  • HTML 4.2%
Find a file
Bill Thornton 5fd5996b02
Merge pull request #7732 from bjorntp/7228
Hold and drag on media no longer activates Multi-select
2026-06-12 11:50:52 -04: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 Remove repository prefix for pages deployment on push workflow 2026-06-01 20:36:24 +02: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 Prevent multi select on mouse move 2026-06-12 11:45:02 -04:00
.editorconfig Update editorconfig for yaml indentation 2024-03-08 11:28:46 -05:00
.escheckrc Remove invalid escheck config 2025-03-25 13:28:35 -04: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 Azure pipelines (#470) 2019-09-19 14:35:30 -04:00
.npmrc Use engine-strict 2022-09-30 01:20:49 -04: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 Move directory structure and add rebase instructions 2026-03-20 09:38:52 -04:00
CONTRIBUTORS.md Merge pull request #7925 from austinhardaway/fix-collection-multi-select 2026-06-05 12:10:30 -04:00
cssnano.config.js Fix CSS fallback 2022-10-08 23:45:54 +03:00
eslint.config.mjs Use String.raw to avoid escaping backslashes in eslint config 2026-06-02 01:05:01 -04:00
flake.lock Add a basic nix flake for development (#6531) 2025-03-03 14:14:24 -05: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 First separation commit. 2019-01-09 12:36:54 +01:00
package-lock.json Bump axios from 1.13.6 to 1.16.0 2026-05-13 15:51:20 +00:00
package.json Bump axios from 1.13.6 to 1.16.0 2026-05-13 15:51:20 +00: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 Fix path references in themes 2025-06-23 18:13:49 -04: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.