a set of simple prototypal inheritance conventions for NodeJS
npm install klazz
- this section still under construction
- write vows to describe expected behavior
- implement behavior
- write documentation
-
Klazz.define(name, params) -> Klazz-
function definitions:
public(name, func_def) -> Method.publicprotected(name, func_def) -> Method.protectedprivate(name, func_def) -> Method.private
-
property definitions:
private(name, value) -> Property.privatepublic(name, value) -> Property.publicprotected(name, value) -> Property.protected
-
-
Klazz.new(params) -> Klazz
- released under the MIT License