Add the ability to hide API keys
When using javascript and external APIs that require a personal API key, there is no way of protecting your API key. Usually, you can hide your API key e.g in the the environment file. const API_KEY = process.env.MY_SECRET_API_KEY; https://medium....