var spotify = require('spotify');
spotify.search({ type: 'track', query: 'dancing in the moonlight' }, function(err, data) {
if ( err ) {
console.log('Error occurred: ' + err);
return;
}
// Do something with 'data'
});