0.0.1 • Published 4 years ago

@thisisabdus/node-imgur v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

node-imgur

An API client library for Imgur in Node.js.

Installation

npm i node-imgur

Usage

const NodeImgur = require('@thisisabdus/node-imgur');
const client = new NodeImgur('api_key');

client
  .getImage('imghash')
  .then((resp) => console.log(resp))
  .catch((err) => console.error(err.message));