A generator for dapp (dojox/app) .
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 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
Use grunt to run tasks, for more available tasks run grunt --help
grunt server
grunt server:dist
grunt lint
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
- 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
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
See CHANGELOG.md
- 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