qobuz
Version:
Qobuz client library for Node.js
31 lines (21 loc) • 793 B
Markdown
# 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
[](https://circleci.com/gh/fvilers/qobuz/tree/master)