This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

gaia-gps-client
TypeScript icon, indicating that this package has built-in type declarations

0.2.3 • Public • Published

gaia-gps-client

An unofficial NodeJS client for Gaia GPS, written in TypeScript. Allows for basic interaction with the Gaia GPS API.

Installation

yarn add gaia-gps-client

or

npm install --save gaia-gps-client

Basic Usage

const { GaiaGpsClient } = require("gaia-gps-client");
 
const client = new GaiaGpsClient();
 
// If you want to access private data, be sure to add a session ID as follows:
// client.sessionId = "SESSION_ID_HERE";
 
(async function() { 
    const trackData = await client.getTrack("TRACK_ID_HERE");
    // ...
})();

Dependencies (5)

Dev Dependencies (5)

Package Sidebar

Install

npm i gaia-gps-client

Weekly Downloads

0

Version

0.2.3

License

MIT

Unpacked Size

22.5 kB

Total Files

14

Last publish

Collaborators

  • kkarpack