0.0.1 • Published 11 years ago

klazz v0.0.1

Weekly downloads
1
License
-
Repository
github
Last release
11 years ago

klazz (unstable)

a set of simple prototypal inheritance conventions for NodeJS

Installation

npm install klazz

Example Usage

  • this section still under construction

Current Goals

  1. write vows to describe expected behavior
  2. implement behavior
  3. write documentation

Expected Behavior

  • Klazz.define(name, params) -> Klazz

    • function definitions:

      • public(name, func_def) -> Method.public
      • protected(name, func_def) -> Method.protected
      • private(name, func_def) -> Method.private
    • property definitions:

      • private(name, value) -> Property.private
      • public(name, value) -> Property.public
      • protected(name, value) -> Property.protected
  • Klazz.new(params) -> Klazz

Further Notes