You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TcpSocket.js#L11 overwrites the process global. This causes existing process.env values to be lost. I think this library should leave it to the end-user to shim the global process object (example). Regardless, I don't think it should clobber existing process.env values as it causes the rest of my program, which depend on the process.env values, to fail.
The text was updated successfully, but these errors were encountered:
TcpSocket.js#L11 overwrites the
process
global. This causes existingprocess.env
values to be lost. I think this library should leave it to the end-user to shim the global process object (example). Regardless, I don't think it should clobber existingprocess.env
values as it causes the rest of my program, which depend on theprocess.env
values, to fail.The text was updated successfully, but these errors were encountered: