UNPKG

876 BMarkdownView Raw
1# Hubot Memes
2
3Meme generator for hubot.
4
5[![Build Status](https://travis-ci.org/waynegraham/hubot-memes.png)](https://travis-ci.org/waynegraham/hubot-memes) [![npm version](https://badge.fury.io/js/hubot-memes.png)](http://badge.fury.io/js/hubot-memes)
6
7## Usage:
8```
9hubot meme list - List the available memes
10hubot meme me (meme) "top message" "bottom message"
11```
12
13### Sample Interaction:
14```
15user1> hubot meme me afraid "hello" "world"
16hubot> http://memegen.link/afraid/hello/world.jpg
17```
18
19## Installation
20
21Add the package `hubot-memes` entry to the `external-scripts.json` file.
22(you may need to creat this file).
23
24```
25"dependencies": {
26 "hubot-memes": "^1.0.x"
27}
28```
29
30Run the following command to ensure the module is installed.
31
32 $ npm install -S hubot-memes
33
34Ensure `hubot-memes` is listed in the dependencies in your
35`package.json` file.
36
37```
38["hubot-memes"]
39```