Skip to content

vancetran/meme-gen

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Meme Gen

A tool that helps make meme images easily for sharing on social media, written in JavaScript. Inspired by Vox Media's Meme tool and Pixelcite.

Installation for Development

Make sure your system has Node.js, Git, and Bower installed.

Run these commands to install required Node modules and various libraries/frameworks like jQuery and Bootstrap.

Node Modules

$ npm install

Bower

# If you don't have bower, install it
$ npm install -g bower
# otherwise, just run:
$ bower install

Grunt

$ npm install -g grunt
$ npm install -g grunt-cli

Simple Dev Server

To Start:

$ node server

Grunt commands

Watch files for changes and compile during Development

$ grunt watch

Concatenated, but un-minified

$ grunt dev

Concatenated, minified files, ready for production

$ grunt build