Skip to content

acostes/deezer-node-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Deezer API wrapper

NPM version Build pass Coverage Status

This is Nodejs wrapper for the Deezer API that return promises.

Installation

npm install deezer-node-api --save

Usage example

var Deezer = require('deezer-node-api');
var dz = new Deezer();

// Get info for the given album id
dz.getAlbum(302127).then(function(album) {
    console.log(album);
});

// Find all the tracks that match the query 'eminem'
dz.findTracks('eminem').then(function(result) {
    console.log(result);
});

// Find all the tracks from the album 'good things'
dz.findTracks({album: 'good things'}).then(function(result) {
    console.log(result);
});

Available methods

  • getAlbum(albumId)
  • getArtist(artistId)
  • findTracks(options, index, order)
  • findAlbums(query, index)
  • findArtists(query, index)

Testing

npm test

About

Deezer API wrapper

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published