Security News
UK Officials Consider Banning Ransomware Payments from Public Entities
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
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 2 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
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.