npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cla6

v1.4.2

Published

ES6 style class system

Downloads

37

Readme

Cla6.js

Provides a class factory with additional functionality, like mixins and plugins. Although originally designed for use with Node.js and installable via npm install cla6, it can also be used directly in the browser.

Cla6 is also installable via:

  • bower: bower install cla6

Basic Example

var Cla6 = require('cla6');

var Parent = Cla6('Parent', {
  constructor: function() {
    console.log('parent constructor');
  },

  parentMethod: function() {
    console.log('parent method');
  }
});

var Child = Cla6('Child').extend(Parent, {
  childMethod: function() {
    this.parentMethod();
    console.log('child method');
  },

  get accessor() {
    console.log('child getter');
  },

  set accessor(value) {
    console.log('child setter');
  }
});

child = new Child(); // parent constructor
child.childMethod(); // parent method, child method
child.accessor = child.accessor; // child getter, child setter

Why Use It

  • Easy to use
  • Easy to read
  • Highliy compatible
  • Defines classes THE RIGHT WAY

Unlike classic class definition, Cla6 defines unenumerable prototype properties:

// Classic class definition

function Klass() {
  this.foo = 'foo';
  this.bar = 'bar';
}

Klass.prototype.constructor = Klass;

Klass.prototype.baz = function() {
  return 'baz';
};

var instance = new Klass();

// prints foo, bar, baz
for (var k in instance)
  console.log(k);

// Cla6 class definition

var Klass = Cla6('Klass', {
  constructor: function() {
    this.foo = 'foo';
    this.bar = 'bar';
  },

  baz: function() {
    return 'baz';
  }
});

var instance = new Klass();

// prints foo, bar
for (var k in instance)
  console.log(k);

Mixins

Each class created by Cla6 can be extended using a mixin. Mixins can be applied at class creation or during run time.

var mixin1 = {
  method1: function() {
    console.log('mixin1');
  }
};

var mixin2 = {
  method2: function() {
    console.log('mixin2');
  }
};

var mixin3 = {
  method3: function() {
    console.log('mixin3');
  }
};

var Klass = Cla6('Klass', {
  constructor: function() {
    console.log("klass");
  },
}).mixin(mixin1, mixin2);

Klass.mixin(mixin3);

var obj = new Klass(); // klass
obj.method1(); // mixin1
obj.method2(); // mixin2
obj.method3(); // mixin3

Plugins

A plugin is a module which adds functionality to Cla6 and can be loaded dynamcally. Multipile plugins can be applied and will be called by their order of use.

Note, each plugin will affect the arguments for the next plugin in the plugins chain.

Cla6.use(plugin);

The official plugins currently available are:

Building a plugin

A basic plugin stracture should look like so:

var initialize = function(Cla6) {
  // initializer logic
};

var manipulate = function(descriptors, Parent) {
  // manipulator logic
};

module.exports = {
  initialize: initialize,
  manipulate: manipulate
};
  • initialize - An optional initializer function which will be called with Cla6 instance once the plugin is used.
  • manipulate - A required manipulator function which will be called every time before a class gets created with its descriptors and Parent class.

Download

The source is available for download from GitHub. Alternatively, you can install using Node Package Manager (npm):

npm install cla6