All Projects → rmp135 → imgur

rmp135 / imgur

Licence: other
A Typescript compatible imgur client for node.

Programming Languages

typescript
32286 projects

Labels

Projects that are alternatives of or similar to imgur

Imgur.sh
Bart's Imgur uploader bash script
Stars: ✭ 145 (+935.71%)
Mutual labels:  imgur
LiveShot
Tool to make enhanced screenshots. Inspired on LightShot
Stars: ✭ 32 (+128.57%)
Mutual labels:  imgur
kap-imgur
Kap plugin - Share GIFs on Imgur
Stars: ✭ 20 (+42.86%)
Mutual labels:  imgur
Node Imgur
Upload images to imgur.com
Stars: ✭ 161 (+1050%)
Mutual labels:  imgur
Meme
A command line utility for creating memes
Stars: ✭ 221 (+1478.57%)
Mutual labels:  imgur
slip
Select and upload screenshots, gifs, and screencasts to imgur and gfycat with help of slop.
Stars: ✭ 25 (+78.57%)
Mutual labels:  imgur
Imgursniper
📷 A quick and easy Image, Screenshot and Screen recording sharing tool
Stars: ✭ 69 (+392.86%)
Mutual labels:  imgur
catimg
Print an image of a cat to the iTerm2 terminal
Stars: ✭ 13 (-7.14%)
Mutual labels:  imgur
Sharex
ShareX is a free and open source program that lets you capture or record any area of your screen and share it with a single press of a key. It also allows uploading images, text or other types of files to many supported destinations you can choose from.
Stars: ✭ 18,143 (+129492.86%)
Mutual labels:  imgur
imgur-links-rewriting-on-ptt
Rewrite imgur links to bypass referrer check.
Stars: ✭ 19 (+35.71%)
Mutual labels:  imgur
Gnome Shell Screenshot
Gnome Shell extension for making and uploading screenshots
Stars: ✭ 163 (+1064.29%)
Mutual labels:  imgur
Ripme
Downloads albums in bulk
Stars: ✭ 2,748 (+19528.57%)
Mutual labels:  imgur
ScreenEat
screenshot made delicious
Stars: ✭ 54 (+285.71%)
Mutual labels:  imgur
Flews
A multi-service news app written in Flutter
Stars: ✭ 148 (+957.14%)
Mutual labels:  imgur
Imgur.API
Imgur.API is a .NET implementation of Imgur's API.
Stars: ✭ 39 (+178.57%)
Mutual labels:  imgur
Imguralbumbot
A reddit bot for linking direct images of single-picture albums
Stars: ✭ 107 (+664.29%)
Mutual labels:  imgur
pmss
pmss (Poor Man's Screenshooter) is a simple screen capture script.
Stars: ✭ 13 (-7.14%)
Mutual labels:  imgur
imgur downloader
Python script/class to download an entire Imgur album in one go into a folder of your choice.
Stars: ✭ 35 (+150%)
Mutual labels:  imgur
saveddit
Bulk Downloader for Reddit
Stars: ✭ 130 (+828.57%)
Mutual labels:  imgur
SmartImage
Reverse image search tool (SauceNao, ImgOps, trace.moe, and more)
Stars: ✭ 346 (+2371.43%)
Mutual labels:  imgur

@rmp135/imgur

A Typescript compatible imgur client for node.

Build Status

Getting Started

Install using npm.

npm install @rmp135/imgur

Authorization, searching and image uploading are all supported. Refer to the documentation for more information.

import { Client } from '@rmp135/imgur'

// The client can be initialised with the client_id.

let client = new Client('43652b743b5a7a0')

// Or with full authorization information.

client = new Client({
  access_token: 'be3fb3e75b229254c8a44e41e376bfc01154ba42',
  client_id: '43652b743b5a7a2',
  client_secret: '2817603add0052fc9920bd3896abdd26992cf422',
  refresh_token: '71f0489801d0d6ae906f51ea20ae562b2ef18d42'
})

const images = await client.Gallery.subRedditGalleries('pics')

console.log(images)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].