Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 827 Bytes

File metadata and controls

33 lines (25 loc) · 827 Bytes

alise-api

npm npm version npm npm

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();