A modern web client for Jellyfin based on Vue
Go to file
Weblate 06572799a4 chore(i18n): update translation files
Updated by "Remove blank strings" hook in Weblate.

Translation: Jellyfin Vue/Jellyfin Vue
Translate-URL: https://translate.jellyfin.org/projects/jellyfin-vue/jellyfin-vue/
2021-11-18 15:02:58 -05:00
.devcontainer chore(node16): update Docker and development environment to Node 16 2021-11-02 15:19:14 +01:00
.docker chore(node16): update lockfile to version 3 (npm > 7 only) 2021-11-02 15:19:14 +01:00
.github fix(deps): bump actions/checkout from 2.3.5 to 2.4.0 2021-11-03 07:53:32 +01:00
.husky refactor: address review comments 2021-03-10 18:55:55 +01:00
.run feat(.run): add WebStorm run configurations 2020-09-02 22:30:42 +02:00
.vscode chore: rename client dir to src 2021-08-26 04:51:58 +02:00
src chore(i18n): update translation files 2021-11-18 15:02:58 -05:00
.dockerignore build(docker): restore dockerignor 2021-03-15 11:39:09 +01:00
.editorconfig feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
.eslintignore test: fix test not passing due to new API version 2021-08-27 13:13:35 +02:00
.eslintrc.js chore(lint): include types declaration to import/resolver 2021-10-13 11:22:18 +02:00
.gitattributes chore(git): add merge attributes for locale files 2020-11-17 19:11:40 +01:00
.gitignore chore(https): upgrade all mentions outside package-lock from http to https 2021-11-02 15:19:14 +01:00
.npmrc refactor: address review comments 2021-03-10 18:55:55 +01:00
.prettierrc feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
babel.config.js fix: disable modern and transpiles jf-client-axios 2021-10-08 18:50:50 +02:00
codecov.yml ci(codecov): removed patch check 2021-03-03 19:30:21 +01:00
commitlint.config.js feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
CONTRIBUTING.md Fix translation platform link 2021-03-22 03:43:30 +01:00
Dockerfile chore(node16): update Docker and development environment to Node 16 2021-11-02 15:19:14 +01:00
Dockerfile.static chore(node16): update Docker and development environment to Node 16 2021-11-02 15:19:14 +01:00
jest.config.js chore: rename client dir to src 2021-08-26 04:51:58 +02:00
LICENSE feat: add initial Nuxt template 2020-09-02 20:48:53 +02:00
package-lock.json chore(mediastreamselector): add langs typings 2021-11-03 10:19:00 +01:00
package.json chore(mediastreamselector): add langs typings 2021-11-03 10:19:00 +01:00
README.md chore(https): upgrade all mentions outside package-lock from http to https 2021-11-02 15:19:14 +01:00
stylelint.config.js feat(dark-theme): add dark theme colors 2021-01-09 11:36:43 +01:00
tsconfig.json build: fix imports and eslint config for use of src folder 2021-03-26 16:43:07 +01:00
vetur.config.js chore: rename client dir to src 2021-08-26 04:51:58 +02:00

Jellyfin Vue

Part of the Jellyfin Project


Logo Banner

GPL 3.0 License Current Release Commitizen friendly
Donate Feature Requests Chat on Matrix Join our Subreddit

This is an experimental web client for Jellyfin based on Vue.js. 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.

Requirements

This project requires Node 16 and uses npm as a package manager.

You also need the following Jellyfin server version:

Jellyfin >=10.7.0

Contributing

We provide a devcontainer to help you setup your environment.

The project also contains recommended extensions for Visual Studio Code, which will help you with syntax style and development.

Finally, we provide useful pre-commit hooks via Husky, as well as Comitizen integration, in order to help you respect the style and naming conventions used throughout this project.

For more information about how to contribute to this project, see CONTRIBUTING.md

Build Process

# install dependencies
$ npm install

# server with hot reload at localhost:3000
$ npm run dev

# serve with hot reload in static mode at localhost:3000
$ npm run dev:static

# build for production
$ npm run build
# launch server
$ npm run start

# build for production and launch server
$ npm run prod

# build for production in static mode
# you will need a web server to host the client
$ npm run build:static

# build for production in static mode and run server
$ npm run prod:static

Running standalone

When using the SSR version of the client, you can run the client in standalone mode in order to save space.

# install dependencies
$ npm install

# build for production in standalone mode, with server-side rendering
$ npm run build:standalone

# move the server and required files to a dedicated directory
$ mkdir -p /opt/jellyfin-vue
$ cp -r .nuxt .docker/nuxt.config.js .docker/package.json /opt/jellyfin-vue

# install the required dependency and start the client
$ cd /opt/jellyfin-vue
$ npm install
$ npm run start