# @gaia-gps-client/client

> NodeJS client for GaiaGPS written in TypeScript

Latest version **0.4.4** (published 2022-11-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install @gaia-gps-client/client
pnpm add @gaia-gps-client/client
yarn add @gaia-gps-client/client
bun add @gaia-gps-client/client
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.4.4 |
| Published | 2022-11-07 |
| First published | 2022-08-17 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 6 |
| Unpacked size | 34.8 KB |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| Author | Kyle Karpack |
| Maintainers | kkarpack |
| Keywords | gaia, gps, gpx, gaiagps, nodejs, api client |

## Links

- npm: https://www.npmjs.com/package/@gaia-gps-client/client
- Repository: https://github.com/kylekarpack/gaia-gps-client
- Homepage: https://github.com/kylekarpack/gaia-gps-client#readme
- Issues: https://github.com/kylekarpack/gaia-gps-client/issues
- npm.io page: https://npm.io/package/@gaia-gps-client/client

## Dependencies (6)

- [axios](https://npm.io/package/axios.md) ^1.1.3
- [level](https://npm.io/package/level.md) ^8.0.0
- [cookie](https://npm.io/package/cookie.md) ^0.4.2
- [graphql](https://npm.io/package/graphql.md) ^15.1.0
- [form-data](https://npm.io/package/form-data.md) ^3.0.0
- [@gaia-gps-client/types](https://npm.io/package/@gaia-gps-client/types.md) 0.4.4

## Recent versions

- 0.4.4 (latest) — 2022-11-07
- 0.4.2 — 2022-11-06
- 0.4.1 — 2022-08-23
- 0.4.0 — 2022-08-23
- 0.3.7 — 2022-08-22
- 0.3.6 — 2022-08-22
- 0.3.5 — 2022-08-22
- 0.3.1 — 2022-08-17
- 0.2.3 — 2022-08-17

## README

# gaia-gps-client

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

## Installation

```
npm install @gaia-gps-client/client
```

## Basic Usage

```javascript
import { GaiaGpsClient } from "@gaia-gps-client/client";

const client = new GaiaGpsClient();

// If you want to access private data, be sure to add a session ID as follows:
// client.setSessionId("SESSION_ID_HERE");

(async function() { 
	const trackData = await client.getTrack("TRACK_ID_HERE");
	// ...
})();
```

---
_Source: https://npm.io/package/@gaia-gps-client/client · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
