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