running two pace progress bars, duplicates info on second
See screen grab. The first progress bar completes when it gets to the constructed total. The second one has duplicates progress data.
(this time with correct screen grab)

+1

If you have multiple instances of pace running in various parts of your application, from the second run onwards you might notice that the progress bar is not rendered correctly with duplicate output.
This effect is additive for each time pace is required with the same stream.
Cause: The problem is with pace dependency charm. In node.js 0.10 the EventEmitter constructor explicitly initializes this._events, so going Charm.prototype = new Stream; causes all Charm instances to share the same _events property.
Fix: Change the charm main module file index.js and replace Charm.prototype = new Stream; with Charm.prototype = Stream.prototype;
check my fork at:https://github.com/ahmadassaf/Awesome-Progress