ampache
Version:
Communicate to an Ampache server using the API
20 lines (17 loc) • 452 B
JavaScript
/**
* Test get artists
*/
var conf = require('./config.json'),
AmpacheSession = require('../');
// Make the connection object
var conn = new AmpacheSession(conf.user, conf.pass, conf.url, {'debug': true});
// Authenticate
conn.authenticate(function(err, body) {
if (err) throw err;
// Get artists
conn.get_artists(function(err, body) {
if (err) throw err;
console.log(JSON.stringify(body, null, 2));
});
});