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

abitbol

v2.1.1

Published

The classiest javascript class library of the world

Downloads

2,455

Readme

Abitbol

Lint and Test NPM Version License Discord

Abitbol is a small Javascript library that provides consistent/easy to use classes for Node.js and web browsers. It is heavily inspired by Armin Ronacher's Classy library, but extends its possibilities.

Features:

  • Simple inheritance
  • Consistent this (always points to the current instance)
  • Annotations
  • Computed properties automatically generated from getters and setters
  • Simple way to call a super class method
  • Simple way to declare static properties
  • Handful mixin

Exemple class definition:

var Vehicle = Class.$extend({

    __init__: function(color) {
        this.color = color;
        this.speed = 0;
    },

    move: function(speed) {
        this.speed = speed;
    },

    stop: function() {
        this.speed = 0;
    }

});

George Abitbol

The classiest javascript class library of the world -- George Abitbol

Install

To install Abitbol run the following command:

npm install abitbol

Documentation

  • https://wanadev.github.io/abitbol/

Contributing

Questions

If you have any question, you can:

Bugs

If you found a bug, please open an issue on Github with as much information as possible.

Pull Requests

Please consider filing a bug before starting to work on a new feature. This will allow us to discuss the best way to do it. This is of course not necessary if you just want to fix some typo or small errors in the code.

Coding Style / Lint

To check coding style, run the follwoing command:

npx grunt lint

Tests

Tu run tests, use the following command:

npx grunt test

Build For Browsers

To generate browser version of the lib (files in the dist/ folder), run:

npx grunt

Changelog

  • [NEXT] (changes on master that have not been released yet):

    • Nothing yet ;)
  • v2.1.1:

    • Updated dev dependencies (@jbghoul, #34)
  • v2.1.0:

    • Added TypeScript type definitions (@jbghoul, #26)
  • v2.0.1:

    • Optimization of special properties detection (@jbghoul, #23)
  • v2.0.0:

    • New pre/post build hooks that allows to implement new patterns on Abitbol Classes.
  • v1.2.0:

    • Support static method/properties in mixin
  • v1.1.1:

    • Updates doc and README
  • v1.1.0:

    • Adds ES2015 support in the annotation parser
  • v1.0.4:

    • Updates dependencies
  • v1.0.3:

    • Allows computed properties' accessors and mutators to be monkey-patched.
  • v1.0.2:

    • Do not wrap methods when it is not necessary.
  • v1.0.1:

    • Fixes context issue with nested method calls.
  • v1.0.0:

    • Computed properties generated from accessors and mutators (get/set), annotations, proper this.
  • v0.1.0:

    • Equivalent to Classy (except Class.$classyVersion, Class.$withData(), Class.$noConflict() that are not implemented).