The node-fetch library with added HTTP_PROXY support
npm install @formio/node-fetch-http-proxy```
npm install --save @formio/node-fetch-http-proxy
Then you can use this library instead of node-fetch like so.
`js
const fetch = require('@formio/node-fetch-http-proxy');
fetch('https://examples.form.io/example').then((resp) => resp.json()).then((form) => {
console.log(form);
});;
``