
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
To create a new class: var Class = require('class-js'); var Car = Class.subclass();
You can subclass: var Lambo = Car.subclass();
To instantiate an object: var auto = Lambo.init();
You can declare instance methods when you define your subclass: var Animal = Class.subclass({ init: function (name) { this.name = name; }, introduce: function () { return "My name is " + this.name; } });
init
is a special instance method that is invoked whenever you instantiate an object via Class.init(...).
You can add instance methods later on after you have defined your subclass: Animal.proto({ speak: function () { return this.noise; } });
All instance methods are inherited by subclasses and descendants: var Tiger = Animal.subclass({ init: function (name) { this._super(name); // this._super is a shortcut to the init method of the superclass (Animal) this.noise = "Growl"; } }); var cub = Tiger.init("Tony"); cub.speak(); // => "Growl"
You can define class methods via: Animal.aClassMethod = function () { return "hola"; };
Class methods are also inherited. Tiger.aClassMethod(); // => "hola"
You can access the class of an object: cub.klass === Tiger; // true
You can also access the superclass from the Class or instantiated Class object: Tiger.superclass === Animal; // true cub.superclass === Animal; // true
We use the expresso library for our testing. So, first install expresso: npm install expresso
To run tests: make test
MIT License
Brian Noguchi
FAQs
Simple OO Class factory
The npm package class-js receives a total of 3 weekly downloads. As such, class-js popularity was classified as not popular.
We found that class-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.