hypem-scrapper
v0.0.5
Published
Simple module to obtain stream of hypem metaid
Downloads
8
Readme
Hypem Scrapper
This is a simple module used to obtain the URL of a specific song be providing its mediaid.
var hypem;
hypem = require('hypem-scapper');
//Async
hypem.getUrl('1wdx7', function(error, url) {
return console.log(url);
});
//Non-Async
hypem.getUrlSync('1wdx7', function(error, url) {
return console.log(url);
});
License
MIT