# gumnode

> Gumroad API client

Latest version **1.0.3** (published 2022-01-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install gumnode
pnpm add gumnode
yarn add gumnode
bun add gumnode
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.3 |
| Published | 2022-01-12 |
| First published | 2021-07-20 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 15.8 KB |
| Known vulnerabilities | 0 (+23 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 12 |
| Author | Noah Buscher |
| Maintainers | noahbuscher |
| Keywords | gumroad, api, wrapper, ecommerce |

## Links

- npm: https://www.npmjs.com/package/gumnode
- Repository: https://github.com/noahbuscher/gumnode
- Homepage: https://github.com/noahbuscher/gumnode#readme
- Issues: https://github.com/noahbuscher/gumnode/issues
- npm.io page: https://npm.io/package/gumnode

## Dependencies (1)

- [axios](https://npm.io/package/axios.md) ^0.21.1

## Alternatives

- [jsforce](https://npm.io/package/jsforce.md) — 851.2K weekly downloads
- [react-native-qrcode-svg](https://npm.io/package/react-native-qrcode-svg.md) — 693.5K weekly downloads
- [@salesforce/plugin-data](https://npm.io/package/@salesforce/plugin-data.md) — 394.9K weekly downloads
- [@backstage/plugin-search-common](https://npm.io/package/@backstage/plugin-search-common.md) — 308.5K weekly downloads
- [@chain-registry/types](https://npm.io/package/@chain-registry/types.md) — 38.4K weekly downloads

## Recent versions

- 1.0.3 (latest) — 2022-01-12
- 1.0.2 — 2021-07-24
- 1.0.1 — 2021-07-20
- 1.0.0 — 2021-07-20

## README

# Gumnode

Gumnode is a Node.js API wrapper for [Gumroad](https://gumroad.com).

It's promise-based, slim, and supports Gumroad's [latest API endpoints](https://app.gumroad.com/api).

> Submit an [Issue](https://github.com/noahbuscher/gumnode/issues) if you find an outdated endpoint or find a new one you want Gumnode to support.

## Install

```
npm install gumnode

or

yarn install gumnode
```

## Usage

```javascript
const Gumnode = require("gumnode");

const api = new Gumnode({
  access_token: "YOUR_ACCESS_TOKEN",
});

api
  .getProduct({ product_id: "PRODUCT_ID" })
  .then((response) => console.log("Found product:", response))
  .catch((response) => console.log("Error:", response.message));
```

## Todo

- [ ] Add docs to functions
- [ ] Add tests

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