What are differences between SystemJS and Webpack?
SystemJS works client side. It loads modules (files) dynamically on demand when they are needed. You don’t have to load the entire app up front. You could load a file, for example, inside a button click handler. SystemJS code: // example import at top of file import myModule from ‘my-module’ myModule.doSomething() // example dynamic import … Read more