Get JavaScriptMVC
There are two ways to get JavaScriptMVC:
- Download it
- Git it from GitHub
We prefer you use Git. It's a great way to share changes with us and the community.
Installing from Github
Download the JavaScriptMVC Install script for Mac or Windows.
Put this script where you want to install JavaScriptMVC's submodules (Steal, jQueryMX, FuncUnit, and DocumentJS).
Type getjmvc in a command promp (or ./getjmvc for Mac users) and it will install each submodule. This script assumes your project is using a git repository.
Run it again later to update each submodule. Script options and more details can be found here.
If you just want a certain repo, or you like doing things the hard way, here's how to get each project yourself:
-
JavaScriptMVC
git clone http://github.com/jupiterjs/javascriptmvc.git
git submodule init
git submodule update
cd into each submodule and do git checkout master -
Steal
git clone https://github.com/jupiterjs/steal.git -
jQueryMX
git clone https://github.com/jupiterjs/jquerymx.git jquery -
Syn
git clone https://github.com/jupiterjs/syn.git -
FuncUnit
git clone https://github.com/jupiterjs/funcunit.git
git submodule init
git submodule update
cd syn
git checkout master -
DocumentJS
git clone https://github.com/jupiterjs/documentjs.git
For more information on how to develop with Git check out Developing with Git.

