navidrome/plugins/examples
2025-07-28 10:04:33 -04:00
..
coverartarchive fix(plugins): add metrics on callbacks and improve plugin method calling (#4304) 2025-07-05 09:03:49 -03:00
crypto-ticker fix(plugins): add metrics on callbacks and improve plugin method calling (#4304) 2025-07-05 09:03:49 -03:00
discord-rich-presence docs(plugins): fix README.md for Discord Rich Presence (#4387) 2025-07-28 10:04:33 -04:00
subsonicapi-demo fix(plugins): add metrics on callbacks and improve plugin method calling (#4304) 2025-07-05 09:03:49 -03:00
wikimedia fix(plugins): add metrics on callbacks and improve plugin method calling (#4304) 2025-07-05 09:03:49 -03:00
Makefile feat(plugins): allow Plugins to call the Subsonic API (#4260) 2025-06-25 14:18:32 -04:00
README.md fix(plugins): add metrics on callbacks and improve plugin method calling (#4304) 2025-07-05 09:03:49 -03:00

Plugin Examples

This directory contains example plugins for Navidrome, intended for demonstration and reference purposes. These plugins are not used in automated tests.

Contents

  • wikimedia/: Retrieves artist information from Wikidata.
  • coverartarchive/: Fetches album cover images from the Cover Art Archive.
  • crypto-ticker/: Uses websockets to log real-time cryptocurrency prices.
  • discord-rich-presence/: Integrates with Discord Rich Presence to display currently playing tracks on Discord profiles.
  • subsonicapi-demo/: Demonstrates interaction with Navidrome's Subsonic API from a plugin.

Building

To build all example plugins, run:

make

Or to build a specific plugin:

make wikimedia
make coverartarchive
make crypto-ticker
make discord-rich-presence
make subsonicapi-demo

This will produce the corresponding plugin.wasm files in each plugin's directory.