# fp-mollie

> Mollie client API bindigs to Fastify

Latest version **1.0.4** (published 2023-02-03) · ISC license · 0 weekly downloads

## Install

```sh
npm install fp-mollie
pnpm add fp-mollie
yarn add fp-mollie
bun add fp-mollie
```

## Health

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

Positive: has types; no vulnerabilities.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.4 |
| Published | 2023-02-03 |
| First published | 2023-02-03 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 3 |
| Unpacked size | 14.4 KB |
| Known vulnerabilities | 0 (+3 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Z3NTL3 |
| Maintainers | z3ntl3 |
| Keywords | fastify, mollie, api, client |

## Links

- npm: https://www.npmjs.com/package/fp-mollie
- Repository: https://github.com/Z3NTL3/fastify-mollie
- Homepage: https://github.com/Z3NTL3/fastify-mollie#readme
- Issues: https://github.com/Z3NTL3/fastify-mollie/issues
- npm.io page: https://npm.io/package/fp-mollie

## Dependencies (3)

- [fastify](https://npm.io/package/fastify.md) ^4.12.0
- [fastify-plugin](https://npm.io/package/fastify-plugin.md) ^4.5.0
- [@mollie/api-client](https://npm.io/package/@mollie/api-client.md) ^3.6.0

## Alternatives

- [launchdarkly-js-client-sdk](https://npm.io/package/launchdarkly-js-client-sdk.md) — 2.5M weekly downloads
- [@elastic/elasticsearch](https://npm.io/package/@elastic/elasticsearch.md) — 2.1M weekly downloads
- [@c8y/client](https://npm.io/package/@c8y/client.md) — 15.3K weekly downloads
- [@signaldb/maverickjs](https://npm.io/package/@signaldb/maverickjs.md) — 1.7K weekly downloads
- [@bbc/http-transport-cache](https://npm.io/package/@bbc/http-transport-cache.md) — 1.2K weekly downloads

## Recent versions

- 1.0.4 (latest) — 2023-02-03
- 1.0.3 — 2023-02-03
- 1.0.2 — 2023-02-03
- 1.0.0 — 2023-02-03

## README

# fastify-mollie

Mollie client API bindigs to Fastify!

### ECMA

```js
import fastify from "fastify";
const app = fastify();
import plugin from "fp-mollie";

app.register(plugin, { apiKey: "your_key" });
app.get("/", async (req, res) => {
  console.log(await app.mollie.methods.list());
  return res.send("ok");
});
app.listen({ port: 2000 });
```

### CommonJS

```js
const fastify = require("fastify");
const app = fastify();
const plugin = require("fp-mollie");

app.register(plugin, { apiKey: "your_key" });
app.get("/", async (req, res) => {
  console.log(await app.mollie.methods.list());
  return res.send("ok");
});
app.listen({ port: 2000 });
```

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