I have a small RPC library for node, and now it uses proxies for remote objects, if available (by checking for the existence of a Proxy global).
I would like for reconciliation proxies to be enabled at runtime, that is, in a node process that did not start with the --harmony-proxy flag. Is it possible?
I understand that there are good reasons not to do this, and I don't care :-P
EDIT As indicated in the answers, node.js proxies use an older specification. I can use a padding, for example https://github.com/tvcutsem/harmony-reflect , but this requires the --harmony flag to enable basic proxy support and I want to know if this can be enabled at runtime in the process running without flags --harmony .
source share