I am trying to do some analysis on Angular 2 and React. One of the things I'm interested in is the size of the core libraries. In others, the minimum needed to get a "hello world" app to run in both.
From my understanding, React just requires the react.min.js file (https://cdnjs.cloudflare.com/ajax/libs/react/15.3.1/react.min.js).
For Angular though, I'm confused. I look at the quick start on Plunkr, and I see four JavaScript files loaded. From my understanding, is optional, but recommended. But then I see zone.js, system.js and systemjs.config.web.js. Are all of these necessary? I just want the bare minimum.
Thank you