Socket
Book a DemoInstallSign in
Socket

kohandlers

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kohandlers

Knockout Binding Handlers to help Knockout app development

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

KoHandlers Build Status Bower version NuGet version

Knockout Utilities Extensions to simplify Knockout app development.

Installation

Using Bower:

$ bower install kohandlers --save

Using NuGet:

$ Install-Package KoHandlers

Usage

You could use kohandlers in different context.

Browser (AMD from source)

Configure RequireJS.

requirejs.config({
    paths: {
        knockout: 'path/to/knockout',
        underscore: 'path/to/underscore',
        jquery: 'path/to/jquery',
        koutils: 'path/to/koutils',
        kohandlers: 'path/to/kohandlers'
    }
});

Load modules

define(["kohandlers/all"], function() {
    
});

Browser (with built file)

Include built script in your HTML file.

<script type="text/javascript" src="path/to/knockout.js"></script>
<script type="text/javascript" src="path/to/underscore.js"></script>
<script type="text/javascript" src="path/to/jquery.js"></script>
<script type="text/javascript" src="path/to/koutils.min.js"></script>
<script type="text/javascript" src="path/to/kohandlers.min.js"></script>

Documentation

Documentation is hosted on Github Wiki.

Keywords

knockout

FAQs

Package last updated on 27 Feb 2018

Did you know?

Socket

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