# hudu-api-client

> A client to quickly and easily make calls to the Hudu documentation tool's API.

Latest version **0.0.2** (published 2023-04-13) · ISC license · 0 weekly downloads

## Install

```sh
npm install hudu-api-client
pnpm add hudu-api-client
yarn add hudu-api-client
bun add hudu-api-client
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.2 |
| Published | 2023-04-13 |
| First published | 2023-04-13 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 19.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Sean Fried |
| Maintainers | noxxxxxious |
| Keywords | hudu |

## Links

- npm: https://www.npmjs.com/package/hudu-api-client
- Repository: https://github.com/noxxxxxious/hudu-api-client
- Homepage: https://github.com/noxxxxxious/hudu-api-client#readme
- Issues: https://github.com/noxxxxxious/hudu-api-client/issues
- npm.io page: https://npm.io/package/hudu-api-client

## Dependencies (1)

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

## Recent versions

- 0.0.2 (latest) — 2023-04-13
- 0.0.1 — 2023-04-13

## README

# Hudu API Client

A client to quickly and easily make calls to the Hudu documentation tool's API. It uses Axios to make the HTTP requests.

This project is to make handling these API calls a bit easier for another project I'm working on, so at the current moment, I have no intentions of fully fleshing this out, but publishing in case someone finds it helpful.


## Usage
```js
const Hudu = require("hudu-api-client")

async function main(){
    //Domain may look something like company.huducloud.com
    const client = new Hudu.APIClient("yourdomain", "yourapikey")

    //Get all companies
    const companies = await client.getCompanies()

    //Get passwords for company with ID 5
    const passwords = await client.getPasswords(5)
}
```

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