Package Exports
- generator-dapp
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (generator-dapp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
generator-dapp 
A generator for dapp (dojox/app) .
Getting Started
What is Yeoman?
Trick question. It's not a thing. It's this guy:
Basically, he wears a top hat, lives in your computer, and waits for you to tell him what kind of application you wish to create.
Not every new computer comes with a Yeoman pre-installed. He lives in the npm package repository. You only have to ask for him once, then he packs up and moves into your hard drive. Make sure you clean up, he likes new and shiny things.
$ npm install -g yo
Yeoman Generators
Yeoman travels light. He didn't pack any generators when he moved in. You can think of a generator like a plug-in. You get to choose what type of application you wish to create, such as a Backbone application or even a Chrome extension.
To install generator-dapp from npm, run:
$ npm install -g generator-dapp
Finally, initiate the generator:
$ yo dapp
- The Dapp Generator is a set of files to help you rapidly get up and running a SPA
- Helps you build your SPA which some times consumes a lot of time when starting a new SPA
- The SPA provides optional creation of Hybrid App using Apache Cordova/PhoneGap
Development (Use Grunt to preview, lint, build)
Use grunt to run tasks, for more available tasks run grunt --help
Preview Source with watch and livereload
grunt server
Preview Distribution with watch and livereload
grunt server:dist
Lint
grunt lint
Build
Be happy, and stop crying because you can't figure out how to build dojo or create a hybrid App as fast and simple as it should be.
Believe me I cried a lot :-(
grunt build
Optional: Hybrid App (Apache Cordova/PhoneGap)
A brief tour
- The starting point of the app is the file at
src/index.html
andsrc/app/main.js
It's responsible for loading the Dojo loader and the application’s bootstrapper withconfig.json
- The task
grunt build
takes your application files and builds them for production using the Dojo build tool.- It depends on the presence of the build profile at
profiles/app.profile.js
and App configsrc/app/config.json
- It depends on the presence of the build profile at
- The App creates an instance of
dojox/app/main
using the App Controller Configuration Filesrc/app/config.json
- The provided directory structure for css, html, and js for your App is defined in config.json, you can change it
Examples
This boilerplate provides a very basic sample mobile App using using dojox.mobile widgets
For more advanced examples including integration with other JavaScript Libraries (jquery, backbone, angular, nodes, mongodb, handlebars, etc.. ) checkout this repo:
See dapp-examples
Useful resources
Change Log
See CHANGELOG.md
License
TODO
- Integrate Continues Integration (CI)
- Add unit tests (i.e. Jasmine or Mocha)
- Add functional testing (Webdriver API)
- Run Unit and Functional Testing using The Intern leveraging the Intern Tutorial
- Sub-Generators
- dapp:view
- dapp:controller
- dapp:store