I use a three phase technique for evaluating APIs.
1) Discovery - In this phase I search StackOverflow, CodeProject, Google and Newsgroups with as many different combination of search phrases as possible and add everything that might fit my needs into a huge list.
2) Filter/Sort - For each item I found in my gathering phase I try to find out if it suits my needs. To do this I jump right into the API documentation and make sure it has all of the features I need. The results of this go into a weighted list with the best solutions at the top and all of the cruft filtered out.
3) Prototype - I take the top few contenders and try to do a small implementation hitting all of the important features. Whatever fits the project best here wins. If for some reason an issue comes up with the best choice during implementation, it's possible to fall back on other implementations.
Of course, a huge number of factors go into choosing the best API for the project. Some important ones:
- How much will this increase the size of my distribution?
- How well does the API fit with the style of my existing code?
- Does it have high quality/any documentation?
- Is it used by a lot of people?
- How active is the community?
- How active is the development team?
- How responsive is the development team to bug patch requests?
- Will the development team accept my patches?
- Can I extend it to fit my needs?
- How expensive will it be to implement overall?
... And of course many more. It's all very project dependent.
As to saving time. , I would say trying to save too much time here will just come back to bite you later. The time put into selecting a good library is at least as important as the time spent implementing it. Also, think down the road, in six months would you rather be happily coding or would you rather be arguing with a xenophobic dev team :). Spending a couple of extra days now doing a through thorough evaluation of your choices can save a lot of pain later.
