1.0.1 • Published 7 years ago

clementine-music-library v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

Clementine Music Library Access for Node.js

Load track data from your Clementine music library with Node.js

Build Status NPM

Install

$ npm install clementine-music-library

Be aware that this is not pure javascript, it relies on SQLite3 binaries. The correct binary should be automatically downloaded but there can be issues, for example when running under Electron it is necessary to run electron-rebuild.

Usage

require("clementine-music-library");

clementineMusicLibrary.getSongs({ played: true }, function(song) {
	console.log(song)
}).then(function() {
	console.log("Loaded all played songs from Clementine")
});