qmeme
v0.1.0
Published
A module that provides a wrapper around quick meme api and certain phrases
Downloads
2
Readme
QMEME
A library creates a quickmeme from one a few expressions:
- Y U NO
text
- I don't always [something] but when i do
text
text
ORLY?text
(SUCCESS|NAILED IT)text
ALL the [things]text
TOO DAMN [high]- Good news everyone! [news]
- Not sure if
text
ortext
- Generates Futurama Fry
- Yo dawg
text
sotext
Install
npm install qmeme
Usage
var qmeme = require('qmeme');
qmeme('GOOD NEWS EVERYONE, QMEME IS HERE!', {username: 'foo', password: 'bar'}, function(err, url) {
console.log(url);
});
qmeme = require("qmeme")
qmeme "GOOD NEWS EVERYONE, QMEME IS HERE!",
username: "foo"
password: "bar"
(err, url) ->
console.log url
License
see LICENSE
Contribution
everyone is welcome to contribute. patches, bugfixes, new features
- create an issue on github so the community can comment on your idea
- fork
qmeme
in github - create a new branch
git checkout -b my_branch
- create tests for the changes you made
- make sure you pass both existing and newly inserted tests
- commit your changes
- push to your branch
git push origin my_branch
- create an pull request