1.0.1 • Published 9 years ago
node-cunet v1.0.1
node-cunet
A library for authenticating with CUNET
Example
const cunet=require('./node-cunet');
cunet.auth('58345678','suP3r5ecre+p@ssw0rD')
.then(result => {
if(result){
// auth ok
}
else{
// auth error
}
})
.catch(e => {
// api error
});