Why is Sand.js fast ? - piercus/sandjs GitHub Wiki

Fast to code

With the require system function(r){ r.moduleName;}, you don't repeat yourself (compare to AMD module definition). So coding is faster.

Fast to execute

Cause it's lightweight, and we don't use asynchronous require by default, the execution of code is, without optimization, faster than with other module manager.