# imgur-info

> Imgur resolver without api code

Latest version **0.0.3** (published 2018-05-06) · MIT license · 0 weekly downloads

## Install

```sh
npm install imgur-info
pnpm add imgur-info
yarn add imgur-info
bun add imgur-info
```

## 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.3 |
| Published | 2018-05-06 |
| First published | 2017-05-29 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=0.12 |
| Dependencies | 0 |
| Unpacked size | 4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Tobias Kutscha |
| Maintainers | timeforaninja |
| Keywords | imgur, album |

## Links

- npm: https://www.npmjs.com/package/imgur-info
- Repository: https://github.com/TimeForANinja/node-imgur-info
- Homepage: https://github.com/TimeForANinja/node-imgur-info#readme
- Issues: https://github.com/TimeForANinja/node-imgur-info/issues
- npm.io page: https://npm.io/package/imgur-info

## Recent versions

- 0.0.3 (latest) — 2018-05-06
- 0.0.1 — 2017-05-29

## README

# node-imgur-info

Simple js only module to resolve Imgur albums without using a token

# Usage

```js
var imgur_info = require('imgur-info');

imgur_info('https://imgur.com/a/some_album', function(err, info) {
	if(err) throw err;
	dosth(info);
});
```


# API
### imgur_info(ref, [callback])

Attempts to resolve the given playlist id

* `ref`
    * ether a direct link like `https://imgur.com/gallery/no3t9ib`
		* just the page `/gallery/no3t9ib`
		* just the id `no3t9ib`
* `callback(err, result)`
    * function
    * getting fired after the request is done

* returns a Promise when no callback is defined


# Install

    npm install --save imgur-info



# License
MIT

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