Nodeproxy

nodeproxy – npm nodeproxy1. 0. 0 • Public • Published 9 years ago Readme Explore BETA0 Dependencies6 Dependents1 Versions A port of the jQuery proxy functionality to NodeJS. Installation The easiest way to install is through the Node Package Manager (NPM): npm install nodeproxyUsage var nodeproxy = require(‘nodeproxy’);function ObjectOne(){ function helloWorld(){ (“Hello ” +);} 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();(); […]