Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 768 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 768 Bytes

Tempo.fit

See their website for more information on what the Tempo even is but the TL;DR is

Tempo is the only smart home gym that makes weight training personalized and safe through real-time form corrections and custom workout plans.

This package provides a TypeScript SDK to the (very unofficial) API their mobile app uses.

Installation

npm i tempo-fit-api

You will want to copy the .env.example and add your tempo username and tempo password to run the tests.

Usage

You must create an instance of Tempo in order to use it.

import { Tempo } from 'tempo-fit-api';

const tempo = new Tempo();
tempo.login({email:'[email protected]',password:'hunter1'});

See tempo.test.ts for a full example of the current usage.