UNPKG

reddit-image-fetcher

Version:

A JavaScript package for fetching reddit images, memes, wallpapers and more

85 lines (82 loc) 1.71 kB
const searchType = [ 'hot', 'top', 'rising' ]; const memeSubreddit = [ 'memes', 'AdviceAnimals', 'AdviceAnimals+funny+memes', 'funny', 'PrequelMemes', 'SequelMemes', 'MemeEconomy', 'ComedyCemetery', 'dankmemes', 'terriblefacebookmemes', 'shittyadviceanimals', 'wholesomememes', 'me_irl', '2meirl4meirl', 'i_irl', 'meirl', 'BikiniBottomTwitter', 'trippinthroughtime', 'boottoobig', 'HistoryMemes', 'OTMemes', 'starterpacks', 'gifs', 'rickandmorty', 'FellowKids', 'Memes_Of_The_Dank', 'raimimemes', 'comedyhomicide', 'lotrmemes', 'freefolk', 'GameOfThronesMemes', 'howyoudoin', 'HolUp', 'meme', 'memeswithoutmods', 'dankmeme', 'suicidebywords', 'puns', 'PerfectTiming' ]; const wallpaperSubreddit = [ 'wallpaper', 'wallpapers', 'iWallpaper', 'earthporn', 'SkyPorn', 'Beachporn', 'multiwall', 'ImaginaryStarscapes', 'ImaginaryLandscapes', 'ImaginaryFuturism', 'ExposurePorn', 'phonewallpapers', 'MobileWallpaper', 'iphonewallpapers', 'iphonexwallpapers', 'ImaginaryBestOf', 'ReasonableFantasy', 'BirdsForScale', 'SympatheticMonsters', 'EpicMounts', 'ImaginaryBehemoths', 'mtgporn', 'ImaginaryLeviathans', 'ImaginaryColorscapes', 'ImaginaryCityscapes', 'ImaginaryMindscapes', 'Cyberpunk', 'ImaginaryCyberpunk', 'ImaginaryFeels', 'ImaginaryTechnology', 'wallpaperengine' ]; module.exports.searchType = searchType; module.exports.memeSubreddit = memeSubreddit; module.exports.wallpaperSubreddit = wallpaperSubreddit;