# ach-node-sdk

> An SDK for the moov-io/ach REST API, generated by `openapi-generator`

Latest version **1.12.0** (published 2024-08-12) · ISC license · 0 weekly downloads

## Install

```sh
npm install ach-node-sdk
pnpm add ach-node-sdk
yarn add ach-node-sdk
bun add ach-node-sdk
```

## Health

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

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

Warnings: low downloads; no esm support; large bundle.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.12.0 |
| Published | 2024-08-12 |
| First published | 2020-05-18 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 3 |
| Unpacked size | 30.5 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Moov Inc |
| Maintainers | adamdecaf, ben-routefusion |
| Keywords | openapi, rest, node, sdk |

## Links

- npm: https://www.npmjs.com/package/ach-node-sdk
- npm.io page: https://npm.io/package/ach-node-sdk

## Dependencies (3)

- [url](https://npm.io/package/url.md) ^0.11.0
- [axios](https://npm.io/package/axios.md) ^1.0.0
- [tslib](https://npm.io/package/tslib.md) ^2.3.0

## Alternatives

- [@expo/fingerprint](https://npm.io/package/@expo/fingerprint.md) — 6.2M weekly downloads
- [@azure/monitor-opentelemetry-exporter](https://npm.io/package/@azure/monitor-opentelemetry-exporter.md) — 850.0K weekly downloads
- [@azure/monitor-opentelemetry](https://npm.io/package/@azure/monitor-opentelemetry.md) — 624.0K weekly downloads
- [@posthog/ai](https://npm.io/package/@posthog/ai.md) — 423.3K weekly downloads
- [fakefilter](https://npm.io/package/fakefilter.md) — 63.9K weekly downloads

## Recent versions

- 1.12.0 (latest) — 2024-08-12
- 1.10.0 — 2024-08-12
- 1.9.0 — 2023-04-12
- 1.6.0 — 2022-09-21
- 1.5.0 — 2022-06-21
- 1.0.0 — 2020-05-18

## README

# ACH Node SDK

Generated Typescript SDK for the [moov-io/ach](https://github.com/moov-io/ach) service.

## Installation

Install in your Node.js or Typescript project using npm:
```bash
npm install ach-node-sdk
```

## Usage

Using `require` sytax:
```js
const { ACHFilesApi, Configuration } = require('ach-node-sdk');
```

Using `import` syntax:
```js
import { ACHFilesApi, Configuration } from 'ach-node-sdk';
```

Build the client instance:
```js
const configuration = new Configuration({ basePath: 'https://ach.mycompany.com' });
const achFilesApi = new ACHFilesApi(configuration);
```

Call functions on the client:
```js
achFilesApi.getFiles().then(response => console.log(response.data));
=> Promise{ <pending> }
{ files: [], error: null };
```

See the [generated documentation](https://moov-io.github.io/ach-node-sdk/docs/) for more detail.

## Building Locally

Run the following to build our library locally.

```
tsc --build tsconfig.json
```

## Generating Client

Run the following for generating the TypeScript client.

```
make client
```

## Generating Docs

Run the following for generating the documentation.

```
make docs
```

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