Simple oo support for javascript
https://github.com/henry42/xclass
Example:
new XClass({
    statics: {
        static_method: function () {}
    },
    method1: function () {},
    method2: function () {},
    extend: ExtendedClass,
    mixins: [MixedClass1, MixedClass2],
    singleton: false
});
