I have some legacy PHP wrappers that are used to call API's via simple curl requests.
I am creating a Node.JS application to call these wrappers and do some additional asynchronous processing.
However, does linking Node and PHP in this simple manner:
Node<->PHP<->External Server
degrade the speed/ performance of the code?