A modern desktop client for Navidrome/Subsonic servers built with React and Rust. https://aonsoku.vercel.app
  • TypeScript 93.9%
  • Rust 3%
  • CSS 2.3%
  • JavaScript 0.6%
  • HTML 0.1%
Find a file
2025-04-07 09:58:54 -03:00
.github/workflows chore: add latest image tag for release tags too 2025-02-07 15:49:01 -03:00
.vscode chore: add ESLint and Tailwind CSS to the recommended VSCode extensions 2024-09-15 00:19:51 -03:00
cypress chore: fix a comment typo 2024-09-15 01:05:32 -03:00
media chore: update app screenshots 2024-10-04 18:48:04 -03:00
public feat: add placeholder image for podcasts 2025-02-13 14:31:03 -03:00
src fix: adjust height of window controls for Windows 2025-04-07 09:29:37 -03:00
src-tauri chore: bump to v0.9.1 2025-04-07 09:58:54 -03:00
.dockerignore fix: include cypress folder to include test types 2024-12-06 02:19:07 -03:00
.env.example fix: correctly apply merged state with auto login values 2025-03-27 13:18:04 -03:00
.eslintrc.json chore: ignore json files on lint 2024-11-23 12:13:51 -03:00
.gitignore chore: move docker variables to .env file 2024-12-06 01:13:20 -03:00
components.json feat: add basic layout 2024-05-20 20:29:48 -03:00
cypress.config.ts test: add tests for preview list component 2024-07-21 20:14:28 -03:00
docker-compose.local.yml chore: move docker variables to .env file 2024-12-06 01:13:20 -03:00
docker-compose.yml chore: move docker variables to .env file 2024-12-06 01:13:20 -03:00
Dockerfile chore: rename sh file to be better identified 2024-10-02 18:46:28 -03:00
env-config.js.template fix: correctly apply merged state with auto login values 2025-03-27 13:18:04 -03:00
index.html feat: add a default value for server url with docker env variables 2024-10-02 16:58:39 -03:00
LICENSE.txt chore: rename app to aonsoku 2024-07-10 16:20:16 -03:00
nginx.conf.template fix: add no cache header to env-config.js in nginx config 2025-03-03 17:01:18 -03:00
package.json chore: bump to v0.9.1 2025-04-07 09:58:54 -03:00
pnpm-lock.yaml chore: update node packages 2025-04-04 17:23:53 -03:00
postcss.config.js chore: add shadcn ui 2024-05-20 16:55:52 -03:00
README.md chore: add podcast feature section to README 2025-04-07 09:49:33 -03:00
set-variables.sh chore: rename sh file to be better identified 2024-10-02 18:46:28 -03:00
tailwind.config.js chore: add layout sizes to tailwind css config file 2025-03-31 17:19:52 -03:00
tsconfig.json fix: exclude manual chunks from app bundle 2025-02-06 08:50:27 -03:00
tsconfig.node.json chore: add better way to create manual chunks 2025-01-20 06:51:28 -03:00
vercel.json fix: add vercel config to support direct access to routes 2024-06-30 20:05:19 -03:00
vite.config.ts chore: add better way to create manual chunks 2025-01-20 06:51:28 -03:00


Aonsoku

Aonsoku

A modern desktop client for Navidrome/Subsonic servers built with React and Rust.

Web App · Report Bug · Request Feature

React Tauri Rust

Download

Table of Contents
  1. Features
  2. Screenshots
  3. Getting Started
  4. Roadmap
  5. Contributing
  6. Translation
  7. License

Features

  • Subsonic Integration: Aonsoku integrates with your Navidrome or Subsonic server, providing you with easy access to your music collection.
  • Intuitive UI: Modern, clean and user-friendly interface designed to enhance your music listening experience.
  • Podcast Support: With Aonsoku Podcasts you can easily access, manage, and listen to your favorites podcasts directly within the app. Enjoy advanced search options, customizable filters and seamless listening synchronization to enhance your podcast experience.
  • Synchronized lyrics: Aonsoku will automatically find a synced lyric from LRCLIB if none is provided by the server.
  • Unsynchronized lyrics: If your songs have embedded unsynchronized lyrics, Aonsoku is able to show them.
  • Radio: If your server supports it, listen to radio shows directly within Aonsoku.
  • Scrobble: Sync played songs with your server.

(back to top)

Screenshots

(back to top)

Getting Started

Prerequisites

  • Node.js
  • pnpm, npm or yarn
  • Rust
  • cargo

Installation

  1. Clone the repo
git clone https://github.com/victoralvesf/aonsoku.git
  1. Install NPM packages
pnpm install
  1. Install tauri-cli
cargo install tauri-cli

Running

  • Web App
pnpm run dev
  • Desktop App
pnpm run tauri dev
  • Docker
version: '3.8'

services:
  aonsoku:
    container_name: aonsoku
    image: ghcr.io/victoralvesf/aonsoku:latest
    restart: unless-stopped
    ports:
      - 8080:8080
  • Podman Quadlet
[Unit]
Description=Aonsoku Container

[Container]
ContainerName=aonsoku
Image=ghcr.io/victoralvesf/aonsoku:latest
PublishPort=8080:8080
AutoUpdate=registry

[Service]
Restart=always

[Install]
WantedBy=multi-user.target default.target
Environment Variables

Below is a table describing the environment variables that can be used in this project. Adjust them as necessary in your .env file.

Variable Default Description Required for Automatic Login
PORT 8080 The port the application runs on.
SERVER_URL If you want the app to access a predefined Subsonic server.
Format: http://your-subsonic-server:port.
HIDE_SERVER false Set to true to hide the server URL field on login and only show username and password.
APP_USER The username for automatic login.
APP_PASSWORD The password for automatic login.
APP_AUTH_TYPE token Specifies the authentication method.
Options: token or password.
SERVER_TYPE subsonic Specifies the server name (important for some fixes).
Options: subsonic, navidrome or lms
HIDE_RADIOS_SECTION false Set to true to hide the radios page from the sidebar menu.

Notes:

  • Automatic Login: To enable automatic login across devices. This should only be used in secure local environments to avoid password compromise.
  • Legacy Authentication: Use APP_AUTH_TYPE=password only if your server does not support token-based authentication.

(back to top)

Roadmap

  • Downloads:
    • Playlist
    • Album
    • Artist
    • Song
  • Queue page
  • Playlist editor
  • Synced lyrics
  • Podcast support

Feel free to request more cool features here.

(back to top)

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

(back to top)

Translation

This project uses Weblate for translations. If you'd like to help, please visit the link to submit your contribution.

Translation status

(back to top)

License

Distributed under the MIT License. See LICENSE.txt for more information.

(back to top)