
Pure MVC is a "state of art" Model View Controller design pattern AS3 framework. Probably you already know the Adobe's Cairngorm framework. Pure MVC is light-weighted and does not have all the features of Cairngorm, but this was the goal of it's author - the framework can be easily extended by the features you need, or you can download "add ons" which will be available in the near future.
As other frameworks, Pure MVC helps you to keep your code organized, so it is easy to maintain, debug or scale in the future. The architecture of Pure MVC helps you to achieve this, maybe better than any other framework. Howard Sholz, an actionscript developer, says: "pureMVC offers methods for solving problems that Cairngorm does not effectively address".
The advantage of Cairngorm is that it is well known. But if your goal is to keep the code clean, easy maintainable and scalable, consider the PureMVC framework and follow it's guideline. The PureMVC framework is good documented and comes also with nice examples, which you can find on it's site. Thanks Cliff for releasing this framework Open Source.


