An ES6 library for wrapping objects in proxies that provide logging and profiling information
npm install proxify-js   
proxify provides ES6 proxies of objects, arrays, and functions with embedded logging functionality to assist in diagnostics or profiling.
```
npm install --save proxify-js
`javascript
import { proxify } from 'proxify-js';
const target = new MyObject();
const proxy = proxify(target);
`
Once an object has been proxified, you can send it on its merry way through the rest of your application and see logging statements indicating how your application is consuming your object.
`javascript
function doSomething(obj) {
const price = obj.price;
const quantity = obj.quantity;
obj.total = price * quantity;
}
// send in the proxy instead of the original object
doSomething(proxy);
`
You'll seen an output in the console similar to this:
``
Property access on [object Object], property: price
Property access on [object Object], property: quantity
Property write on [object Object], property: total, value: price * quantity
Property descriptor access on [object Object], property: total
Property definition on [object Object], property: total, descriptor { ... }
Notes
* It's useful to override Object#toString() to get a more helpful description of your object in the logs
* Proxies are only available in the latest browsers. Check the ES6 Compatibility table.
* Check out the awesome MDN documentation on proxies to learn more about the various traps and the operations they intercept.
To start the Webpack dev server:
`javascript`
npm start
To run Karma unit tests and generate Istanbul coverage reports:
`javascript`
npm test
To build Webpack bundles:
`javascript`
npm run build:dev
npm run build:prod
To generate jsdoc documentation:
`javascript``
npm run doc