This package has been deprecated

Author message:

This package is deprecated. Migrate your code to the standard JavaScript class syntax.

barman

0.4.2 • Public • Published

Barman

Build Status NPM version devDependency Status

Barman is a small library to brew JavaScript objects.

It simplifies the definition of objects using single-inheritance and traits like composition.

It works with Nodejs and all mayor browsers, including IE 8.


Installation

Node.js

npm install barman --save

Browser

Barman doesn't have any dependency to be used. It can be loaded directly or using AMD:

  • dist/barman.min.js: minimized, with a source map availble on dist/barman.min.js.map.

  • dist/barman.js: full source.

Barman is also available on cdnjs, and as a Bower package:

bower install barman

Feature walkthrough

Define a class, using newclass (run on jsfiddle):

var Message = barman.newclass({
    appendTo: function (aContainer) {
        aContainer.append(this.createElement());
    },
 
    createElement: function () {
        return $('<div></div>').text('Hello Barman!');
    }
});
 
// Append "Hello Barman!" to #container
new Message().appendTo($('#container'));

Create a sub-class, using ExistingClass.extend (run on jsfiddle):

var ColoredMessage = Message.extend({
    color: 'red',
 
    createElement: function () {
        return $('<div></div>')
            .text('Hello Barman!')
            .css('color', this.color);
    }
});
 
// Append a red "Hello Barman!" message to #container
new ColoredMessage().appendTo($('#container'));

Access to the super-class implementation using ThisClass.__super__ (run on jsfiddle):

var ColoredMessage = Message.extend({
    color: 'red',
 
    createElement: function () {
        var superCreateElem = ColoredMessage.__super__.createElement;
        return superCreateElem.call(this).css('color', this.color)
    }
});

Constructors are automatically inherited (run on jsfiddle):

var Message = barman.newclass({
    // A constructor is added to the super class
    constructor: function (msg) {
        this.message = msg;
    },
    /* ... */
});
 
var ColoredMessage = Message.extend({/* ... */ });
 
// ColoredMessage(msg) is available by default 
// (you can avoid it by defining your own constructor)
new ColoredMessage("My Message").appendTo($('#container'));

Mixins can be added to a class definition:

// Defines the behavior of appendTo, requires createElemn
var AppendableElement = {
    appendTo: function (aContainer) {
        aContainer.append(this.createElement());
    }
};
var Message = barman.newclass(
    [ AppendableElement ],
    {
       // appendTo is now provided by AppendableElement
       // it requires createElement to be defined
    });

Mixins and classes can indicate required fields using required:

// Defines the behavior of appendTo, requires createElemn
var AppendableElement = {
    createElement: barman.required,
    appendTo: function (aContainer) {
        aContainer.append(this.createElement());
    }
};
var Message = barman.newclass(
    [ AppendableElement ],
    {
       // appendTo is now provided by AppendableElement
       // it requires createElement to be defined:
       createElement: function () { /*...*/ }
    });

Mixins can be composed in any order (run on jsfiddle):

// TemplateBased provides an implementation for createElement
var TemplateBased = {
    template: barman.required,
    renderTemplate: function () {
        // omited for brevity, see the example on jsfiddle
    },
    createElement: function () {
        return $(this.renderTemplate());
    }
};
 
var Message = barman.newclass(
    // using [AppendableElement, TemplateBased] will give the same result
    [ TemplateBased, AppendableElement ],
    {
        template: '<div>{message}</div>',
 
        constructor: function (msg) {
            this.message = msg;
        }
    });

A composition conflict throws an exception (run on jsfiddle):

var CompositeElement = {
    createContainer: required,
    childs: required,
    createElement: function () { /* ... */ }
};
// ...
// throws an exception both CompositeElement 
// and TemplateBased defines createElement
var MessageComposite = barman.newclass(
     [ AppendableElement, CompositeElement, TemplateBased ],
     {
        /* ... */
     });

Conflicts can be resolved by setting which implementation to use (run on jsfiddle):

var MessageComposite = barman.newclass(
    [ AppendableElement, CompositeElement, TemplateBased ], {
 
    /* ... */
 
    createElement: CompositeElement.createElement,
    createContainer: TemplateBased.createElement
});

CoffeeScript compatibility

CoffeeScript classes can extend Barman classes (run on jsfiddle):

SomeBarmanClass = barman.newclass
    hello: -> 'Hello World'
 
class MyCoffeeClass extends SomeBarmanClass
    hello: -> super + ' from super'
 
anInstance = new MyCoffeeClass()
anInstance.hello() # returns "Hello world from super" 

`newclass can be used to extend CoffeeScript classes with traits (run on jsfiddle):

class MyCoffeeClass
    hello: -> 'Hello from Coffee'
 
otherTrait = other: 'This comes from a trait'
 
MyBarmanClass = barman.newclass MyCoffeeClass[otherTrait]
 
anInstance = new MyBarmanClass()
 
anInstance.other # returns "This comes from a trait" 
anInstance.hello # returns "Hello from Coffee" 

As replacement of NodeJS inherits

Barman classes also exports a super_ property making the switch from NodeJS util.inherits easy:

Using util.inherits:

var util = require("util");
var events = require("events");
 
function MyStream() {
    events.EventEmitter.call(this);
}
 
util.inherits(MyStream, events.EventEmitter);
 
MyStream.prototype.write = function(data) {
    this.emit("data", data);
}

Using newclass:

var newclass = require('barman').newclass;
var events = require('events');
 
var MyStream = newclass(events.EventEmitter, {
  // super_ points to EventEmitter, but since the super constructor is
  // included by default, you don't need to call it
 
  write: function (data) {
    this.emit("data", data);
  }
})

Reference

clone(obj)

Creates a shallow copy of obj. On environments that supports Object.create it's an alias for that function, otherwise the usual trick of "temporary function + prototype + new to clone" it's used.

extend(target, obj, ...)

Adds or overwrites all the properties from obj into target, for example:

extend({c:4},{a:1,d:5},{a:2,b:3}) // returns {a:2,b:3,c:4,d:5}

This kind of function is usually provided by libraries like jQuery, Underscore, or Lodash; since it's useful for default values and to implement mixins. It's used internally but provided for convenience, if you want to do mixins mix or newclass are better options.

merge(obj1, ...) or merge([obj, ...])

Creates a new object by merging the properties from the given objects.

When two objects define the same property with different values, the property value is replaced with merge.conflict.

If a property has merge.required as a value, it will be replaced when that property is defined by another object.

The function can be invoked with variable arguments, or with an array of objects:

merge([obj1, [obj2]]) == merge([obj1, obj2]) == merge(obj1, obj2)

merge is used to do the traits composition on newclass and mix, one important property of it is that: merge(a, b) == merge(b, a), so it doesn't matter in which order you apply traits the result will be equivalent.

merge.assertNoConflict(obj)

Throws an exception if some of the property values of obj is merge.conflict.

merge.conflict

barman.conflict === merge.conflict

Value used to mark merge conflicts. It's a function that throws an exception when evaluated.

merge.required

barman.required === merge.required

Value used to mark that a property needs to be implemented. It's a function that throws an exception when evaluated.

mix(obj, traits, spec)

Creates a clone of obj and mixes all the traits into it. The spec can be used to specify additional properties or to resolve conflicts.

This function is almost equivalent to: extend(clone(obj), merge(traits), spec) , but it also throws an exception if there is an unresolved merge conflict.

  • obj (optional): if omitted {} is used.

  • traits (optional): an array of objects to merge.

  • spec (optional): additional properties to add or overwrite.

newclass(Parent, traits, spec, classMethods)

The term class it's a simplification, since JavaScript doesn't have native classes but constructor functions that clone its associated prototype object.

  • Parent (optional): a parent class to extend, note that Parent.extend() it's an alias for newclass(Parent)

  • traits (optional): an array of objects to merge with spec.

  • spec (optional): specification of the instance properties (the prototype).

  • classMethods (optional): properties that will be part of the class instead of the prototype.


Development

For development you'll need Nodejs, and Grunt.

Before contributing execute grunt dist to run jshint and tests.

Useful Grunt tasks:

  • default: Runs jshint and test.
  • test: Runs tests on Nodejs.
  • integration-test: Runs tests on PhantomJS. This task also generates files to run tests on the browser (see the .tmp directory or run the dev task).
  • dist: Runs all the tests and generates the minified files.
  • dev: Starts a web server for test pages (port 9001). Changes are automatically updated.

Release History

See CHANGELOG.


License

Released under MIT license

Package Sidebar

Install

npm i barman

Weekly Downloads

6

Version

0.4.2

License

none

Last publish

Collaborators

  • dfernandez79