Skip to content

AndreMiras/mysodexo.js

Repository files navigation

Mysodexo JavaScript client

Tests Coverage Status Documentation npm version

A Javascript client for the Mysodexo reverse engineered API.

Install & Usage

Install it with npm.

npm install mysodexo

Then use the command line client.

mysodexo --balance

Or the library.

import { login } from "mysodexo";
login("[email protected]", "password").then(({ accountInfo }) =>
  console.log(accountInfo)
);