What is benchmarking? It refers to the process of testing the performance of an implementation with respect to an already established one. For example, in the airspace industry we can assume that an F-16 is the benchmark for the fastest plane. Any new design should then compare (benchmark) itself against the performance of an F-16. … Continue reading Benchmarking your JavaScript code
Tag: ES6
Organizing A large JavaScript application
As my project lickcreator keeps getting larger, the need to decide upon and implement a good directory structure becomes pretty important. I previously had all my .js files in a common directory called src. Well that's dirty, but its fine if you just have a few files (think less than 7). I'm using Backbone.js so … Continue reading Organizing A large JavaScript application