Package Exports
- youtube-search
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (youtube-search) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
youtube-search
youtube-search is an npm module to easily search videos on youtube.
Usage
var search = require('youtube-search');
var opts = {
maxResults: 10,
startIndex: 1
};
search('deadmau5', opts, function(err, results) {
if(err) return console.log(err);
console.dir(results);
});