This module implements the voicebox api. Voicebox is a sweet karaoke joint in Portland.
Bump your own song to the top of the queue.
var vb = require('voicebox')('RRLK');
vb.search('dude', function (err, res) {
vb.bump(res[0].id);
});
var voicebox = require('voicebox')
Create a new voicebox instance to fuck with rooms.
Search for songs, firing cb(err, results)
.
Get the queue for the room as cb(err, queue)
.
Clear the queue in a room because the people around you have terrible taste.
Add a song the regular way like a normal person.
Bump your song to the top of the queue because you know how to use APIs.
Delete a song that sucks from the queue.
With npm do:
npm install voicebox-karaoke
MIT