alise-api
A powerful and user-friendly wrapper for interacting with the alise API.
This project is not affiliated with Alise in any way.
Installation
npm install alise-api
Exemple
import { authenticateWithCredentials } from "alise-api";
async function main() {
let client = await authenticateWithCredentials(
"your_email",
"your_password",
"your_site"
)
console.log(client)
}
main();