fetchall js is solid for quick-and-dirty batching, but it’s not a silver bullet.
I’ve used it in prod, and the main pro is readability—way cleaner than nested Promises. But yeah, error handling is all-or-nothing unless you tweak it.
For alternatives, check out ky (smaller than axios) or just roll your own with Promise.all + try/catch.
If you’re lazy (like me), fetchall js saves time, but don’t expect magic.
I’ve used it in prod, and the main pro is readability—way cleaner than nested Promises. But yeah, error handling is all-or-nothing unless you tweak it.
For alternatives, check out ky (smaller than axios) or just roll your own with Promise.all + try/catch.
If you’re lazy (like me), fetchall js saves time, but don’t expect magic.
