I understand the advantages of loading big and common libraries like jQuery from CDN.
But what about the smaller plugins and library helpers like jQuery-ui or bootstrap and its helpers. My site has about 10-12 of those.
Should I pick each of them individually from cdnjs and get the CDN benefits, but potentially have many more HttpRequests. Or should I locally compress and minimize them into one big plugins file and load from my server?
I see this question on SO framed as "Multiple libraries off a public CDN or one concatenated file on our CDN", but what if we don't subscribe to a CDN?