nodeproxy

1.0.0 • Public • Published

nodeproxy

A port of the jQuery proxy functionality to NodeJS.

Installation

The easiest way to install is through the Node Package Manager (NPM):

npm install nodeproxy

Usage

var nodeproxy = require('nodeproxy');
 
function ObjectOne(){
    function helloWorld(){
        console.log("Hello " + this.name);
    }
    return {
        helloWorld: helloWorld
    }
}
 
function ObjectTwo(){
    function init(){
        var contextObject = { name: 'iain' };
        var objectOne = new ObjectOne();
        nodeproxy(objectOne.helloWorld, contextObject)();
    }
    return {
        init: init
    }
}
 
var objectTwo = new ObjectTwo();
objectTwo.init();
//Console will display..
//Hello iain

Readme

Keywords

none

Package Sidebar

Install

npm i nodeproxy

Weekly Downloads

237

Version

1.0.0

License

none

Last publish

Collaborators

  • iainjmitchell