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 🙏

© 2025 – Pkg Stats / Ryan Hefner

clazz

v0.1.1

Published

A Javascript library that provides a class-style programming DSL

Readme

clazz-js Build Status

clazz-js is a class based programming library providing a convenient DSL to write Javascript programms in a class based manner.

Installation

clazz-js can be installed using npm:

$ npm install clazz

Usage

See this example to get an idea of how the code looks:

var util = require('util');
var clazz = require('../clazz').clazz;

var Greeter = clazz('Greeter').body({
    initialize: function (messageTemplate) {
        this.messageTemplate = messageTemplate;
    },

    greeting: function (user) {
        return util.format(this.messageTemplate, user);
    }
});

var greeter = new Greeter('Hello world, %s!');
console.log(greeter.greeting('howdy'));

var ConsoleGreeter = clazz('ConsoleGreeter').extends(Greeter).body({
    sayHello: function (user) {
        console.log(this.greeting(user));
    }
});

var consoleGreeter = new ConsoleGreeter('Hello world, %s!');
consoleGreeter.sayHello('dude');

All the functions given to body are copied to the class` prototype object. Thus all instances of a class share a single copy of all the functions.

Inheritance

Inheritance works completely in sync with Javascript's prototype object. The extends method takes a class object as an argument and makes the clazz being in definition a subclass of the given class.

Given the example above both of the following expressions evaluate to true:

consoleGreeter instanceof ConsoleGreeter
consoleGreeter instanceof Greeter

This also works with classes not defined using the class DSL, i.e. node's EventEmitter

var util = require('util');
var events = require('events');

var clazz = require('../clazz').clazz;

var EventedGreeter = clazz('EventedGreeter').extends(events.EventEmitter).body({
    initialize: function (messageTemplate) {
        this.messageTemplate = messageTemplate;
    },

    greet: function (user) {
        var message = util.format(this.messageTemplate, user);
        this.emit('greeting', message);
        return this;
    }
});

var greeter = new EventedGreeter('Hello world of events, %s');
greeter.on('greeting', function (msg) {
    console.log(msg);
});
greeter.greet('dude');

Mixins

TODO