Go to StealJS.com for step-by-step instructions to create this app from scratch.
Prerequities: Ensure Node.js along with NPM and grunt-cli are properly installed. You will also need a webserver. If you don't have one, you can install this simple command-line http-server.
Clone the repo.
> git clone [email protected]:stealjs/quick-start.git
Install Node modules
> cd quick-start
> npm install
Run the grunt build task to have StealJS collect, minify and concatenate all the required javascript files.
> grunt build
Spin up your webserver or run http-server
> http-server
Open file http://localhost:8080/index.html in browser.
Open the Network panel in Developer Tools and you should see only two javascript files. The steal-tools grunt task builds a graph of the required files, minifies and concatenates all the scripts into main.js.