argoapi

A nodejs module made for comunicate with Argo API

Usage no npm install needed!

<script type="module">
  import argoapi from 'https://cdn.skypack.dev/argoapi';
</script>

README

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