Nodevore : Using convore with node.js

by trouf on 26/05/2011

It’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);
 });
view raw nodevore.js This Gist brought to you by GitHub.

All of the API methods are supported at the time of writing, including the live API.

Cheers.

stefan.pataky@gmail.com

No comments yet.

Write a comment: