Comparing Winston and Bunyan Node.js Logging

A great study about Node.js logging published can be found at StrongLoop blog. Two logging frameworks are presented and compared: Bunyan and Winston.

The comparation criteries are the following:

The study concluded that both frameworks are very mature and established logging frameworks and are very much on par in terms of features. Winston has a lot of community support with various logging modules. Bunyan makes it easy out of the box to parse logs but leaves consumption up the user (generally syslog drain works pretty well here). I feel it all comes down to preference and how easy it is to integrate with your stack.

The full article can be found here.