Save files on netlify

I looked into a lot of old posts - I understand the general recommendation would be to hook up a DB endpoint (supabase, mongo?) but I was wondering if there’s a super-simple-low-level API or integration we can use with netlify to save simple files or anything like that.

@gkatsanos No, the files you deploy after your build completes are sent to and served from a CDN.

Netlify Functions are AWS Lambda’s, so there’s no permanent storage there.

For simple data you could use:
https://docs.netlify.com/blobs/overview/

But for anything else you would need to integrate with some other system/provider.

Thank you Nathan!
Are you aware of any NoSQL integration? I only was able to find supabase and not keen to work with SQL

@gkatsanos If you’re looking at this:
https://www.netlify.com/integrations/supabase/

I’ve never used any of the Netlify Integrations, I don’t even know what they provide.

I don’t tend to work with “plugins” no matter the system, I’d just look at the documentation for whatever system I was trying to integrate with.

So I’m definitely not the right person to ask for a recommendation from.