alise-api
v0.1.2
Published
A wrapper around Alise internal API.
Downloads
436
Maintainers
Readme
alise-api
A powerful and user-friendly wrapper for interacting with the alise API.
[!warning] 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();