Scaffolds models, routes and templates a la rails
This addon requires Ember, Ember Data and Ember CLI at version 2.0 or higher. Additionally, it will install ember-cli-mirage, of which at least version 0.2.0 is required.
In your ember-cli app, do ember install ember-cli-scaffold
ember generate scaffold user first_name:string last_name:string age:number
open http://localhost:4200/users
This command generates the following files:
- app/mixins/users/save-model-mixin.js
- app/routes/users/edit.js
- app/routes/users/index.js
- app/routes/users/new.js
- app/templates/users/-form.hbs
- app/templates/users/edit.hbs
- app/templates/users/index.hbs
- app/templates/users/new.hbs
- app/templates/users/show.hbs
- app/models/user.js
- app/mirage/factories/user.js
- tests/acceptance/users-test.js
These files contain all the CRUD operations and an acceptance test with all tests passing. In order to provide a fake server in both development and tests ember-cli-mirage is used.
It's also possible to generate using the pod structure, just pass the -pod
flag to scaffold generator.
To remove the generated files just use the ember destroy scaffold <model-name>
command. For instance ember destroy scaffold user
.
npm test
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request