1.0.2-alpha • Published 7 years ago

qobuz v1.0.2-alpha

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

qobuz

Qobuz client library for Node.js

Installation

Add the package to your application.

npm install --save qobuz

Getting started

Import the Qobuz class into your application and initialize it with your appId and appSecret (if needed).

const Qobuz = require('qobuz');
const client = new Qobuz('100000000');

Use functions from various endpoints like album, artist, or playlist.

client.album.get('0886443927087')
  .then(album => console.log(album.title)) // Random Access Memories (Édition Studio Masters)
;

Continuous Integration

CircleCI