I have thought hard about what library would be best, but any library "X" would be missing a certain feature from library "Y".
What are peoples' thoughts on using mutliple JavaScript libraries simultaneously?
I have thought hard about what library would be best, but any library "X" would be missing a certain feature from library "Y".
What are peoples' thoughts on using mutliple JavaScript libraries simultaneously?
Quite simply, don't do it. You'll have headaches with:
If you have some specific need that a different library addresses, pull the pieces of that library as needed. It'll save you way more time than it takes to extract what you need.
With more and more javascript libraries coming out every day it is often impossible to not include multiple javascript libraries.
I frequently use any combination of the following libraries:
Any good javascript developer will utilize any library necessary to complete the solution.
To arbitrarily limit yourself to one library is just going to create extra work for you.
Be conscious of your memory footprint, but don't re-invent the wheel unless you need to.