Socket
Socket
Sign inDemoInstall

classyjs

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    classyjs

Classy classes from http://classy.pocoo.org/ for NodeJS


Version published
Maintainers
1
Install size
236 kB
Created

Readme

Source
// Classy //

   Classes for JavaScript

Wooya. You love JavaScript and use jQuery or another
lightweight library extensively but you notice that
your code becomes messier and messier the larger the
application grows? Well, that’s where Classy comes in.
Classy is a small JavaScript library that implements
Python inspired classes for JavaScript.

    var Animal = Class.$extend({
      __init__ : function(name, age) {
        this.name = name;
        this.age = age;
        this.health = 100;
      },
    
      die : function() {
        this.health = 0;
      },
    
      eat : function(what) {
        this.health += 5;
      }
    });

var leo = Animal("Foo", 42);
// or alternatively
var leo = new Animal("Foo", 42);

More information on the website:
-  http://classy.pocoo.org/

Keywords

FAQs

Last updated on 03 Mar 2014

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc