equation-connect
v1.7.0
Published
[](https://github.com/AndreMiras/equation-connect.js/actions/workflows/tests.yml) [
Install
yarn add equation-connectUsage
Here's a basic example for logging and retrieving installations information.
import { login, getInstallations } from "equation-connect";
const showInstallations = async (email, password) => {
const user = await login(email, password);
const installations = await getInstallations(user.uid);
console.log(installations);
};
showInstallations(process.env.EMAIL, process.env.PASSWORD);Explore the documentation for more: https://andremiras.github.io/equation-connect.js
