Hey, this might have to do with how you're running your local example. Dart has two JS compilers: dartdevc for use during development, dart2js for use during production. dartdevc actually creates readable code which also allows for debugging and profiling – the JS files it generates are gargantuan in amounts and sizes thought, and this could be the cause of the difference in performance you're noticing.
(this is the same package used by the Dart plugin for IntelliJ)
Please let us know if this is the issue.