The Dojo Boilerplate is a set of files to help you rapidly get up and running with the Dojo Toolkit. It illustrates some basic best practices when working with Dojo.
- Make sure you have Node.js and a Java runtime installed.
- Clone the repository using
git clone --recursive
. - Run
npm install
to install additional Node.js dependencies. - Develop your project in
src/
until it is amazing. - Run
build.sh
, which will create an awesome optimised build indist/
. - Upload
dist/
for millions of people the world over to enjoy. - Hapyness.
Run build.cmd
, which will create an awesome optimised build in dist/
.
- All of the application's source goes in
src
. It will be built intodist
. - Build profiles for the build system go in
profiles
. - The entrypoint of the demo application is the HTML file at
src/index.html
. - The
build.sh
/build.cmd
scripts take your application files and build them for production use using Stylus and the Dojo build system. They depend on the presence of an application build profile atprofiles/app.profile.js
. - The file
src/app/resources/app.styl
contains all the CSS for the application. - Tests using Intern exist in the
tests
directory. They can be run withtests/run.sh
. The test configuration is attests/intern.js
and defaults to using a Sauce Labs tunnel.
This boilerplate is occasionally updated to try to reflect the latest and greatest features and design patterns for writing Web apps with Dojo, but it relies heavily on information and contributions from other users. If you have an idea, suggestion, or problem, please report it or create a pull request! (Please note that you will need to have signed the Dojo CLA before your pull requests are accepted, for the good of us all!)
The Dojo Boilerplate is licensed under the New BSD license.