I'm migrating hard-coded values into environment variables in my project, so naturally the Phidget Network Server port is a good candidate. Unfortunately it looks like Phidget22.Connection doesn't support strings as part of the constructor so I have to convert it to a number. Can the connection class be changed to better support environment variables for port number?
What I want to do:
let connection = new Phidget22.Connection(process.env.PHIDGET_NETWORK_SERVER_PORT, 'localhost');
What I have to do:
let connection = new Phidget22.Connection(parseInt(process.env.PHIDGET_NETWORK_SERVER_PORT, 10), 'localhost');
Also just so I'm clear - is this the correct place to report bugs and feature requests for language specific APIs?