Socket
Socket
Sign inDemoInstall

basekit

Package Overview
Dependencies
2
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    basekit

Base class with event binding, signal and teardown facilities


Version published
Weekly downloads
1
Maintainers
1
Install size
15.3 kB
Created
Weekly downloads
 

Readme

Source

basekit

Installation

$ npm install basekit

Usage

var Base = require('basekit').Base;

// create subclass
var SomeView = Base.extend(function(superConstructor, superMethods) {
    return [
        function(rootElement) {
            superConstructor.call(this);

            var onCreate = this._addSignal('onCreate');
            this._bind(rootElement, 'click', function() {
                var newObject = {some: "thing"};
                onCreate.emit(newObject);
            });
        }
    ];
});

// create a view instance
var myView = new SomeView(document.getElementById('create-item'));
myView.onCreate.connect(function(item) {
    console.log("object created:", item);
});

// later on, we can destroy the view explicitly;
// this will unbind all event listeners and remove any signal connections
myView.teardown();

FAQs

Last updated on 18 Aug 2013

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