Hey everyone! As a frontend developer, I often find it frustrating to set up a full Node backend just to secure my API keys. Has anyone figured out a simpler way to do this? I'd love to hear your thoughts on solutions that could streamline the process, maybe something that could be done in just a couple of clicks!
1 Answer
Check out serverless services like Cloudflare, Netlify, or Firebase! They allow you to store secrets without needing to manage a whole backend. You can also use .env files if you're working with tools like Vite or Webpack. Just remember, for public keys like those from Google Maps or Stripe, you can set domain restrictions if necessary.
Thank you! I've gotten a lot of helpful responses - really appreciate yours too!