eight-track-bypass

1.0.6 • Public • Published

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);
	}
});

Readme

Keywords

none

Package Sidebar

Install

npm i eight-track-bypass

Weekly Downloads

1

Version

1.0.6

License

MIT

Last publish

Collaborators

  • liljebergxyz