Listen to your favourite osu!lazer beatmaps as a spotify playlist from the terminal
- Node.js
20+ mpvavailable on yourPATH- An osu!lazer install with beatmaps available locally
If you're developing locally, Realm's native bindings are still the one awkward part of this stack. Use the repo's setup script so Bun install and the Realm repair step happen in the right order.
npm install -g osu-play
Or run it without a global install:
npx osu-play
# Launch the TUI player osu-play # Export a playlist file osu-play --exportPlaylist playlist.txt # Loop the playlist osu-play --loop
Up/Downorj/k: Move through the playlistLeft/Rightorh/l: Seek backward or forward by 5 secondsEnter: Play the selected trackSpace: Pause or resume playbackn/p: Next or previous trackPageUp/PageDown: Jump faster through the playlistr: Toggle loopings: Stop playbackq: Quit/: Enter search mode- Type in search mode: Jump the selection by track title
Backspace: Edit the search queryEnter: Leave search mode and keep the current queryEsc: Leave search mode, or clear the current query outside search mode
import { getLazerDB, getRealmDBPath } from "osu-play"; const realmPath = getRealmDBPath({ osuDataDir: "/path/to/osu" }); const db = await getLazerDB(realmPath);
--reload, -r: Deprecated and ignored--exportPlaylist: Export the discovered track paths to a file instead of launching the TUI--osuDataDir, -d: Override the osu!lazer data directory--configDir, -c: Deprecated and ignored--loop, -l: Restart from the beginning when playback reaches the end--help, -h: Show help
Bun 1.3+ is required only for development and contributing; it is not needed to run the published CLI via npm install -g or npx osu-play.
bun run setup bun run dev bun run check
Useful day-to-day commands:
bun run dev
bun run dev -- --loop
bun run dev -- --exportPlaylist playlist.txt
bun run test
bun run packageIf you hit a Realm native-binding error like realm.node missing or Node failing to load Realm:
bun install bun run repair:realm
If osu-play fails with an mpv startup or IPC error, make sure mpv is installed and available on your shell PATH.
bun run package builds the distributable files and creates a local npm tarball with bun pm pack.
osu-play now reads osu!lazer's live client.realm directly in read-only mode instead of copying it into a separate app directory.
Standalone Bun executables are intentionally not part of the release flow right now. The current Realm dependency uses native bindings, and Bun's standalone executable support does not yet cover that path cleanly enough for this app.
MIT