Skip to content

Ceereals/ArgoAPI-NodeJS

Repository files navigation

ArgoAPI-NodeJS

A simple npm module that allows you to communicate with ScuolaNext Argo's API

npm version badge

Install

npm i argoapi

Usage

With .then() clause

const ArgoAPI = require('argoapi')

ArgoAPI.login('school code','username','password')
    .then(message => {
    //successfull message
    })
    .catch(err => {
        //error message
    })

With async/await method

const ArgoAPI = require('argoapi')

//inside an async function
try {
    await ArgoAPI.login('school code','username','password')
} catch(e) {
    console.log(e)
}

Documentation

For docs see the DOCS.md file.

License

MIT

About

Argo api for nodejs

Topics

Resources

License

Code of conduct

Contributing

Stars

8 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors