# monial

> A library to interact with Monial

Latest version **1.1.0** (published 2022-06-19) · ISC license · 0 weekly downloads

## Install

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

## 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.1.0 |
| Published | 2022-06-19 |
| First published | 2022-06-14 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 4.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | monialapp |

## Links

- npm: https://www.npmjs.com/package/monial
- npm.io page: https://npm.io/package/monial

## Dependencies (1)

- [@supabase/supabase-js](https://npm.io/package/@supabase/supabase-js.md) ^1.35.3

## Recent versions

- 1.1.0 (latest) — 2022-06-19
- 1.0.0 — 2022-06-14

## README

# Monial

Monial is a tool to collet and display testimonials. You can use this library to interact with Monial.

To use monial you'll need:
1. A Monial account
2. Your project's API token
3. Library installed in your project

## Download library
```npm install monial``` or ```yarn add monial```

## Library features

1. Get testimonials data from Monial
2. Post testimonials to Monial

If you're looking for using Monial pop-ups, go to framework specific library, like `monial_react`

## Get testimonials from Monial

Use this method to get testimonials data from Monial:

```js
const getTestimonialsData = require("monial")

getTestimonialsData({token: "your_api_token_here"})
```
| Props | Required |
| ------ | ------ |
| token | true |

## Post testimonials from Monial

Use this method to post any testimonials to Monial:

```js
const postTextTestimonial = require("monial")

postTextTestimonial({
    token: "your_api_token_here",
    testimonial: "This is a test testimonial",
    name: "John Doe",
    image: "https://www.google.com/img/logo_lg.png",
    position: "CEO",
    type: "text"
})
```

| Props | Required |
| ------ | ------ |
| token | true |
| testimonial | true |
| name | true |
| image | true |
| position | true |
| type | true |

## Contribution

You can't contribute.

## License

MIT

**Thats all**

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