Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timeforaninja/node-imgur-info
Imgur resolver without api code
https://github.com/timeforaninja/node-imgur-info
Last synced: 27 days ago
JSON representation
Imgur resolver without api code
- Host: GitHub
- URL: https://github.com/timeforaninja/node-imgur-info
- Owner: TimeForANinja
- License: mit
- Created: 2017-05-28T20:21:23.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-05-23T12:25:50.000Z (over 4 years ago)
- Last Synced: 2024-12-22T16:37:43.015Z (about 1 month ago)
- Language: HTML
- Homepage:
- Size: 38.1 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# node-imgur-info
[![Greenkeeper badge](https://badges.greenkeeper.io/TimeForANinja/node-imgur-info.svg)](https://greenkeeper.io/)
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