Package Exports
- bugmenot
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (bugmenot) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Bugmenot
A node Bugmenot module to find username and password for various sites
Install
You can install this library from npmjs typing npm install bugmenot
Usage
var bugmenot = require('bugmenot');
bugmenot.getAccounts('example.org', function(err, data) {
if(!err) {
for(var i in data) {
console.log("Username: "+data[i].username+"\nPassword: "+data[i].password+"\nPerc: "+data[i].stat+"\nVote: "+data[i].vote+"\n\n");
}
}
});
Author
Domenico Luciani (http://dlion.it)
LICENSE
MIT