1.0.2 • Published 3 years ago

reddit-random-image v1.0.2

Weekly downloads
8
License
MIT
Repository
github
Last release
3 years ago

reddit-random-image

Get a random image form a given reddit

Install

npm install reddit-random-image

Usage

import search from 'reddit-random-image';

(async function () {
	for (var i = 0; i < 10; i++) {
		const image = await search('CatGifs');
		console.log(image);
	}
})();