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

joii

v4.1.1

Published

Javascript Object Inheritance Implementation

Downloads

32

Readme

GitHub version Build Status npm version

What is JOII?

JOII (short for JavaScript Object Inheritance Implementation) brings class- based programming to JavaScript without the use of a compiler. Everything is done using native JavaScript. JOII allows you to build your applications using Classes and Interfaces as you would in most other object oriented languages. JOII is built with the priciple of being compatible with any browser on the market. Therefore, JOII is supported by Internet Explorer 5.5 and anything that came after that.

Full documentation can be found here

UPGRADING TO 4.x

In node environments, JOII no longer exposes anything to the global scope. This means that functions like Class, Interface and Enum are no longer directly available by default. If you want to keep this behavior, use the useGlobal() function when requiring JOII.

require('joii').useGlobal();

Features

IRC

JOII can be found on the freenode IRC server on channel #joii.

License

Like most other popular JavaScript libraries, JOII is released under the MIT license.

The MIT License is simple and easy to understand and it places almost no restrictions on what you can do with a JOII project. You are free to use any JOII-project in any other project (even commercial projects) as long as the copyright header is left intact. All sample codes on this website are public domain, meaning you're free to do with them as you please.

Installation

Browser

Load JOII like any other library. JOII does not require any dependencies.

<script src="/path/to/joii.min.js"></script>

JOII is available as a bower package: bower install joii

Node

Install using npm and automatically add to your package.json file using --save if you want.

npm install joii --save

Somewhere, in your node project:

var JOII = require("joii");

var MyClass = JOII.Class({ /* ... /* });

Node & Global Scope

Since 4.x, JOII functions, such as Class and Interface are no longer leaked to the global scope by default. To make these functions globally availalbe, use the useGlobal() function.

require("joii").useGlobal();

var MyClass = Class({ /* ... */ });

Running unit tests

  1. Clone the repository from here.
  2. Install dependencies through npm via npm install
  3. Run the testsuite using the command npm test
  4. Optionally, open testsuite.html in a browser to see the browser-version of the unit tests.

Sneak peek

This is an example of what JOII looks like in action.

// Define a simple class called "Person".
var Person = Class({

    // Declare a property called 'name'.
    'public immutable string name' : null,
    
    // Declare a constructor to be executed upon instantiation.
    'private construct': function (name) {
        this.name = name;
    }
});

// Define a class called "Employee" that extends on "Person"
var Employee = Class({ extends: Person }, {

    // Add an 'occupation' property.
    'public nullable string occupation' : null,
    
    // Override the constructor from "Person".
    'private construct' : function (name, occupation) {
        // invoke the parent constructor
        this.super('construct', name);
        
        // Set the given occupation.
        this.setOccupation(occupation);
    }
});

var bob = new Employee('Bob');
bob.setOccupation('Developer');

console.log(bob.getName()); // Bob
console.log(bob.getOccupation()); // Developer

As you can see, the example code uses setter and getter methods that we didn't define. When a property is declared public, JOII automatically generates getters and setters for this property and enforces type checking in them.

Properties are not exposed to the public, even if they are declared to be.

// properties are never exposed to the public, this is undefined:
bob.occupation;

// This will throw an exception, because occupation must be a string:
bob.setOccupation(123);

When a property is declared protected, getters and setters are still generated but are not exposed to the public. When a property is declared private, nothing is generated.

Find out more about this in the getters and setters section.

Custom constructor methods

As of 3.1.0, it's possible to add custom constructor methods. To ensure full compatibility with other JOII-based libraries, constructor method names are only added and never replaced. When a constructor method is found, no more of these will be executed upon instantiation.

You can add custom constructor method names using JOII.Config.addConstructor('hello');

For example:

// Add the 'hello' constructor.
JOII.Config.addConstructor('hello');


var Hi = Class({
    hello: function () {
        console.log('Hello World!');
    }
});

// Outputs: "Hello World!"
new Hi();

Beware that original / existing constructors are leading, meaning they'll be executed first.

var Hi = Class({
    hello: function () {
        // I am never executed.
        console.log('Hello World!');
    }

    // __construct is the 'original' constructor, so it gets more priority over the
    // newly added one, 'hello'.
    __construct: function () {
        console.log('Hi there.');
    }
});

Full documentation can be found here