I’m just getting started with Ember.js and trying to understand some conventions used amongst its projects and I wanna know if, for example, the proper nomenclature for controllers is App.ApplicationController or App.applicationController?
I’ve seen code examples of both.
The Ember naming conventions are pretty simple.
Words in uppercase are for class, and in lowercase for instances, as Peter Wagenet said:
I suggest you to read its post: The Emberist: Naming convention.
You can take a look at all the others posts in this blog, they are really interesting.