1.0.5 • Published 6 years ago
argoapi v1.0.5
ArgoAPI-NodeJS
A simple npm module that allows you to communicate with ScuolaNext Argo's API
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.