Nodevore : Using convore with node.js
26/05/2011It’s been quite a while since I fell in love with node.js, but only recently have I tried my hand at actually writing a npm module.
While working on a project involving node.js, I needed to get build and test results from my deployment enviroment into convore somehow for other members of the team to see. I checked around a bit and it seemed that noone had actually written a convore API wrapper… .. so I went ahead and made this
https://github.com/troufster/nodevore
It’s really straight forward really. Just install and use like any other node.js module.
var Nodevore = require('nodevore').Nodevore;
var n = new Nodevore({ username : 'user', password : 'pass'});
n.verifyAccount(function(err, data) { console.log(data); });All of the API methods are supported at the time of writing, including the live API.
Cheers.