# giphy-wrapper

> A simple wrapper for the giphy public api

Latest version **0.0.3** (published 2016-07-25) · 0 weekly downloads

## Install

```sh
npm install giphy-wrapper
pnpm add giphy-wrapper
yarn add giphy-wrapper
bun add giphy-wrapper
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2016-07-25 |
| First published | 2013-07-28 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=0.10.x |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 9 |
| Author | Patrik Ring |
| Maintainers | ptte |
| Keywords | giphy, gif, api |

## Links

- npm: https://www.npmjs.com/package/giphy-wrapper
- Repository: https://github.com/ptte/node-giphy
- Homepage: http://www.patrikring.se
- Issues: https://github.com/ptte/node-giphy/issues
- npm.io page: https://npm.io/package/giphy-wrapper

## Alternatives

- [@mce/gif](https://npm.io/package/@mce/gif.md) — 2.6K weekly downloads
- [cleanse](https://npm.io/package/cleanse.md) — 173 weekly downloads
- [str](https://npm.io/package/str.md) — 127 weekly downloads
- [naming](https://npm.io/package/naming.md) — 95 weekly downloads
- [tap-telco-api](https://npm.io/package/tap-telco-api.md) — 19 weekly downloads

## Recent versions

- 0.0.3 (latest) — 2016-07-25
- 0.0.1 — 2013-07-28

## README

node-giphy
==========

A wrapper for the giphy public API

Usage
-----

Use to query the giphy api

Get some fancy gifs already!

Currently implemented:

***Search***

Do a search for keywords

Params

	string keyword
	int limit (default 25, max 100)
	int offset
	string rating (default 'g' (y,g, pg, pg-13 or r))


Recent

Examples
-------

```javascript

var giphy = require('giphy-wrapper')('YOUR_API_KEY');

giphy.search('otters', 10, 0, 'g',function (err, data) {
	if (err) {
		// check error
	}

	// use data, returns the data as an object
});
```

Test
----

```
make test
```

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