corazon

0.1.1 • Public • Published

Corazón

NPM version Build status Code Climate Coverage Status Dependencies devDependencies

An elegant JS class system at the heart of Azul.js.

var Class = require('corazon/class');
 
var Person = Class.extend({
  init: function(firstName, lastName) {
    console.log('creating the person %s %s', firstName, lastName);
  }
});
 
var person = Person.create('Whitney', 'Young');

See usage details on the Azul.js website.

License

This project is distributed under the MIT license.

/corazon/

    Package Sidebar

    Install

    npm i corazon

    Weekly Downloads

    1

    Version

    0.1.1

    License

    MIT

    Last publish

    Collaborators

    • wbyoung