Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/twlite/memes

Simple module for deno to resolve memes from a subreddit.
https://github.com/twlite/memes

Last synced: about 1 month ago
JSON representation

Simple module for deno to resolve memes from a subreddit.

Awesome Lists containing this project

README

        

# memes
Simple module for deno to fetch memes from a subreddit.

# Example
```ts
import memer from "https://deno.land/x/memes/mod.ts";

const meme = await memer("me_irl");
console.log(`Found ${meme.imageURL}`);

```

# How to run
You need to run your code with `--allow-net` flag.

```console
$ deno run --allow-net
```