proxy-forwarder

0.1.1 • Public • Published

proxy-forwarder

An ES2015 Proxy that forwards every available trap to a new target.

Build status

proxy-forwarder implements all traps listed at MDN for an object, forwarding every trappable operation to a target object. Requires ES2015 Proxy support. In node, that means passing --harmony_proxies as a command line argument.

Install

npm i --save proxy-forwarder

Example

import forward from 'proxy-forwarder';
 
let object = { x: 5 };
let mirror = forward(object);
 
mirror.x = 6;
 
assert(object.x === 6);

License

MIT © Martin Svanberg

Package Sidebar

Install

npm i proxy-forwarder

Weekly Downloads

2

Version

0.1.1

License

MIT

Last publish

Collaborators

  • msvanberg