Introduction

Introduction to the object model

One of the main goals of Blueprint is to promote good software design through accepted Software Engineering concepts such as modularization, separation of concerns, software design patterns, software design principles, and clean code. To support this goal, Blueprint uses its own object model that allows us to promote and use good software design practices without compromising the powerful features of JavaScript.

Much of the inspiration for our object model is derived from our experience using EmberJS for front-end development. Similar to core objects in EmberJS, we support many of the same features. The reason for deviation is that we need something specific to our framework needs, which we can extend as needed. We also wanted it to support ES6 out-of-the-box.

The object model library for Blueprint is a stand-alone project that you can integrate into your own project. The Blueprint-specific concepts are not part of the object model.

If you are familiar with object-oriented programming, then you will find learning Blueprint's object model fairly easy. If you are not familiar with object-oriented programming, it should not be hard to pick up.

Happy Coding!

Last updated