1.0.2 • Published 8 years ago

musicplaystoreprices v1.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
8 years ago

MusicPlayStorePrices

A library to get play store prices for music as returned by their webpage

This project is not endorsed by of affiliated with Google in any way.

Usage

Download via npm

npm install musicplaystoreprices

Require Library

var playSearch = require('musicplaystoreprices');

Search For Song

Using Node JS callback style:

var options = {
	"artist": "Tremonti",
	"song": "Cauterize"
}
playSearch.getSong(options, function(err, data){
	// returns array of songs
});

Search For Album

Using Node JS callback style:

var options = {
	"artist": "Tremonti",
	"album": "Cauterize"
}
playSearch.getAlbum(options, function(err, data){
	// returns array of albums
});