Skip to content

conbojs/conbo-objectproxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ObjectProxy for ConboJS 4

ObjectProxy is an experimental class for ConboJS that uses the ES2015 Proxy to wrap plain JavaScript objects to enable them to be be used with ConboJS two-way data binding, as an alternative to using a Hash or similar data model.

The ObjectProxy class can be imported as an AMD, CommonJS or global module.

Getting started

The ObjectProxy class was inspired by the Apache Flex class of the same name and serves the same purpose.

You can create a new ObjectProxy using the static create method:

var obj = {a: 0};
var proxy = ObjectProxy.create(obj);

Strict proxies

If you would like to prevent reading or creation of dynamic and private properties, simply create your proxy with true as a second parameter:

var proxy = ObjectProxy.create(obj, true);

The proxy will then throw an error if anyone tries to read or write properties that don't exist on the target object, or begin with an _.

Make a donation

If you find this project useful, why not buy us a coffee (or as many as you think it's worth)?

Make a donation

About

Bindable object proxy for ConboJS

Resources

License

Stars

Watchers

Forks

Packages

No packages published