A library for authenticating with CUNET
const cunet=require('cunet');
cunet.auth('58345678','suP3r5ecre+p@ssw0rD')
.then(result => {
if(result){
// auth ok
}
else{
// auth error
}
})
.catch(e => {
// api error
});