In most of the javaScript MVC frameworks there is a requirement to seperate your application files in to diretories like so:
-App
-Controllers
-Models
-Views
I'm building my own MVC framework in the hope that it will help be better understand the concepts before I go on to use one of the well established frameworks.
My question is how do the existing frameworks make this directory structure work? How does a controller know that the view is up a directory and in to the views folder for instance? How is this communication made possible?
I've been googling for routing in MVC Javascript. I can see that routing url's specify the controller to be called and parameters to be sent to this controller but this doesn't explain what I need to know.