overlookmotel / livepack

Serialize live running code to Javascript
MIT License
40 stars 1 forks source link

Handle serializing `Proxy` objects #72

Open overlookmotel opened 3 years ago

overlookmotel commented 3 years ago

Currently Livepack does not detect Proxy objects and serializes the object which the Proxy presents itself as.

overlookmotel commented 3 years ago

Could implement support by either:

  1. Shimming Proxy constructor
  2. Using process.binding('util').getProxyDetails()