Skip to content

Installation

Derek Williams edited this page Mar 21, 2016 · 6 revisions

Jiffy is available from GitHub, npm, Bower, and Docker. Take your pick and follow the the steps below. Or, to just use the thing, try the online version.

Prerequisites

  1. If you don't already have git and node.js, download and install them from git-scm.com and nodejs.org.
  • For linux: sudo apt-get install git nodejs-legacy npm (and also sudo the installs below).
  1. From a command prompt, run:
  • npm install -g bower grunt-cli

Then, run through one of the options below from a command line.

For a faster startup time, you can replace grunt serve with node webserver.js and then open your browser to http://localhost/app.

GitHub Clone Option

git clone https://github.com/derekwlms/jiffy.git
cd jiffy
npm install && bower install
grunt serve

NPM (node.js) Option

npm install jiffy-editor
cd node_modules/jiffy-editor
npm install && bower install
grunt serve

Bower Option

bower install jiffy
cd bower_components/jiffy
npm install && bower install
grunt serve

Docker Option

docker pull derekwlms/jiffy
docker run -p 3000:3000 -d derekwlms/jiffy 
docker-machine ip
    (if using docker-machine - to get the Docker VM's IP address)
Open your browser to http://(Docker VM IP):3000

Clone this wiki locally