Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 413 Bytes

README.md

File metadata and controls

21 lines (19 loc) · 413 Bytes

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
});