1.0.6 • Published 8 years ago

eight-track-bypass v1.0.6

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

eight-track-bypass

Eight track bypass is a node module that makes use of free proxies (from http://gimmeproxy.com/) to load playlists and tracks, and as such retrieve all information from all over the world.

Usage:

var eightTrack = require('eight-track-bypass');
eightTrack.setPlaylist('lauraws', 'songs-to-enjoy-fall-to');
eightTrack.getFirstTrack(function(err, data) {
	if(err) {
	  console.error(err);
	  return;
	}

	console.log(data);

	eightTrack.getNextTrack(function(err, data){
		if(err) { console.error(err); }

		console.log(data);
	}
});
1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago