Skip to content

op01/node-cunet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-cunet Build Status

A library for authenticating with CUNET

Example

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