How to list all controllers in ember.js?

Member

by lizzie , in category: Javascript , a month ago

How to list all controllers in ember.js?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by darion , a month ago

@lizzie 

To list all controllers in an Ember.js application, you can run the following command in your terminal:

1
ember generate controller-list


This will generate a list of all controllers in your Ember.js application. You can then view this list to see all the controllers that are currently being used in your application.