Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/halitsever/random-memes
🌁 Random meme genarator package with reddit & custom api support
https://github.com/halitsever/random-memes
meme-creator meme-maker random-memes
Last synced: 7 days ago
JSON representation
🌁 Random meme genarator package with reddit & custom api support
- Host: GitHub
- URL: https://github.com/halitsever/random-memes
- Owner: halitsever
- License: mit
- Created: 2020-10-21T23:09:34.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-29T06:25:38.000Z (7 months ago)
- Last Synced: 2024-05-01T16:37:31.246Z (7 months ago)
- Topics: meme-creator, meme-maker, random-memes
- Language: JavaScript
- Homepage: https://halitsever.github.io/random-memes/
- Size: 836 KB
- Stars: 11
- Watchers: 1
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
🌁 Random reddit & custom api meme genarator and custom meme maker module for node.js
- 🧑💻 [**Reddit Support**](#) - You can fetch random memes on reddit
- 🗒️ [**Text and Image**](#) - Get random memes as text & image
Installation:
```bash
npm install random-memes --save
```Get random meme:
```javascript
const memes = require("random-memes");const fetchMeme = async () => {
const meme = await memes.random();
console.log(meme);
};
```Get random meme from reddit:
```javascript
const memes = require("random-memes");const fetchMeme = async () => {
const meme = await memes.reddit({ locale: "en" });
console.log(meme);
};
```
MIT LICENSE 2019-present | Halit Sever