Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/twlite/memes
- Owner: twlite
- Created: 2020-07-26T15:36:57.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-04T09:38:50.000Z (over 4 years ago)
- Last Synced: 2024-09-20T00:28:48.533Z (about 2 months ago)
- Language: TypeScript
- Homepage:
- Size: 4.88 KB
- Stars: 5
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```