Question about storage and rate limits on node.js based Netlify functions

So the limits mentioned in the other thread is 50MB for a zipped function. Our buildbot will always zip up your functions for deploy so that’s what you have to work with. That zip file will include all the dependencies that you import in your function.

As for having some sort of access control, have you considered implementing basic auth on select paths?