Releases: YahooArchive/mojito-cli-create
Routing Paths for Anonymous Mojit Instances Updated in Application Archetypes
When users create a new application, they should be able to create a mojit and then go to the URL http://localhost:8666/:mojit/:action, where :mojit is the name of the mojit instance (i.e., @myMojit) and action is the mojit method: @myMojit/index => @myMojit.index.
A correction was also made in the instructions for running apps that is displayed in the index view for the default app.
v0.1.1
v0.0.8
This release includes the demo archetype for creating demo apps. The demo archetype comes with the quickstartguide demo app. So, by running mojito create demo quickstartguide qs, you will create the demo app qs, which you can use to view Mojito documentation and use as a reference app. You can add your own demo apps to archetypes/demo as well.
Also, the mojit module and class naming syntax has changed to be closer to that of YUI modules and classes. For example, when you create the mojit Map, the module will be map for the controller, map-model for the model, and map-binder-index for the binder. The class names would be Map, MapModel, and MapBinderIndex.