6개 카테고리 중 Vue 4승, Angular 2승, 무승부 none엣지 케이스는 아래 라이브 테스트를 실행하면 집계에 들어갑니다. 여기에 저장되지 않고 여러분의 브라우저에서 측정됩니다.
엣지 케이스
아직 실행하지 않았습니다일상적인 네 가지 상황을 여러분의 브라우저에서 나란히 돌립니다. 케이스에서 ‘실행’을 누르고 무슨 일이 일어나는지 보세요. 여기에 미리 녹화해 둔 것은 없습니다.오래된 응답이 새 응답을 덮어씀서버가 답하는 것보다 빠르게 목록을 클릭해 봅니다.실행Angular○아직 실행하지 않았습니다Vue○아직 실행하지 않았습니다The watcher assigns whatever the awaited request returns, with no cancellation. Ignoring a response that is no longer current takes a check after the await that the selected id has not changed.코드 보기높이가 제각각인 10,000행행마다 높이가 다른 긴 목록을 스크롤합니다.실행Angular○아직 실행하지 않았습니다Vue○아직 실행하지 않았습니다Every row is rendered by a plain v-for over the data. Rendering only the rows on screen takes a virtualization library and a way to measure each row, since the heights differ.코드 보기마운트 100번 뒤에 남은 구독구독한 컴포넌트를 백 번 마운트하고 언마운트합니다.실행Angular○아직 실행하지 않았습니다Vue○아직 실행하지 않았습니다onMounted subscribes and there is no matching onUnmounted. Releasing the subscription takes a teardown hook in every component that subscribes.코드 보기깨진 항목 하나가 트리를 무너뜨림카드 스무 개 중 하나에 잘못된 데이터를 넣습니다.실행Angular○아직 실행하지 않았습니다Vue○아직 실행하지 않았습니다The production build drops the throwing component and leaves an empty comment node in its place, so the rest of the list stays and the page shows no sign that anything failed — the TypeError reaches the console only. Putting something visible where the card was takes an onErrorCaptured hook and markup to render in the failed slot.코드 보기
코드
Angular 5개 중 0개, Vue 5개 중 5개 · Vue 앞섬읽을 것이 얼마나 되는지, 그중 남의 것이 얼마나 되는지.AngularVueLines of code (TodoMVC)307247Vue가 Angular보다 20% 아래Fewer lines to read when someone else picks the project up. Counts the code you write and maintain yourself, not a stylesheet you installed from npm.Official TodoMVC implementation from github.com/tastejs/todomvc, plus the $mol one from the todomvc-compare repository. Every line of every source file under `src/`, tests, build config and the HTML shell excluded. Styles are excluded for every framework, because TodoMVC renders one fixed layout and its CSS is the same work regardless of framework: the tastejs examples install that stylesheet as the `todomvc-app-css` package and keep a small override sheet, while the $mol implementation writes its own. Counting styles would compare that packaging choice rather than the frameworks. The counting rule is the one published in todomvc-compare and reproduces its $mol figure to the line.Angulargithub.com/…/angular2026-08-13Vuegithub.com/…/vue2026-08-13npm packages shipped64Vue가 Angular보다 33% 아래How many npm packages end up inside the bundle the browser downloads. This is code your users execute, not code your build machine reads.Distinct `node_modules/<package>` paths in the `sources` of the production build sourcemaps. Scaffolded on 2026-08-13 with each framework's own getting-started command: react `npm create vite@latest app -- --template react-ts`; vue `npm create vue@latest app -- --default`; svelte `npx sv create app --template minimal --types ts --no-add-ons --install npm`; solid `npm create solid@latest app -- --vanilla --ts --template basic`; angular `npx @angular/cli@21 new app --defaults --skip-git --package-manager=npm`; $mol `git clone --depth 1 https://github.com/hyoo-ru/mam.git app && npm install`. For $mol, the sourcemap of the deployed todomvc.hyoo.ru bundle.Angularangular.dev/installation2026-08-13Vuevuejs.org/guide/quick-start.html2026-08-13Dev dependencies declared1510Vue가 Angular보다 33% 아래Packages the starter project names in its own package.json. Build-time tooling included: this is the list your development environment inherits, not what reaches the browser.Entries in `dependencies` plus `devDependencies` of a fresh starter project. Scaffolded on 2026-08-13 with each framework's own getting-started command: react `npm create vite@latest app -- --template react-ts`; vue `npm create vue@latest app -- --default`; svelte `npx sv create app --template minimal --types ts --no-add-ons --install npm`; solid `npm create solid@latest app -- --vanilla --ts --template basic`; angular `npx @angular/cli@21 new app --defaults --skip-git --package-manager=npm`; $mol `git clone --depth 1 https://github.com/hyoo-ru/mam.git app && npm install`.Angularangular.dev/installation2026-08-13Vuevuejs.org/guide/quick-start.html2026-08-13Dev packages installed425125Vue가 Angular보다 71% 아래How many separate packages npm resolves into node_modules on a clean checkout. Each one is an author your build trusts, and every CI run downloads all of them.Distinct name+version pairs in `npm ls --all` after scaffolding and installing the starter project. Scaffolded on 2026-08-13 with each framework's own getting-started command: react `npm create vite@latest app -- --template react-ts`; vue `npm create vue@latest app -- --default`; svelte `npx sv create app --template minimal --types ts --no-add-ons --install npm`; solid `npm create solid@latest app -- --vanilla --ts --template basic`; angular `npx @angular/cli@21 new app --defaults --skip-git --package-manager=npm`; $mol `git clone --depth 1 https://github.com/hyoo-ru/mam.git app && npm install`.Angularangular.dev/installation2026-08-13Vuevuejs.org/guide/quick-start.html2026-08-13node_modules size281 MB98.3 MBVue가 Angular보다 65% 아래Disk footprint of a fresh checkout. None of it ships to the browser, but all of it is downloaded by every CI run and every new machine on the team.`du -sk node_modules` after scaffolding and installing the starter project. Scaffolded on 2026-08-13 with each framework's own getting-started command: react `npm create vite@latest app -- --template react-ts`; vue `npm create vue@latest app -- --default`; svelte `npx sv create app --template minimal --types ts --no-add-ons --install npm`; solid `npm create solid@latest app -- --vanilla --ts --template basic`; angular `npx @angular/cli@21 new app --defaults --skip-git --package-manager=npm`; $mol `git clone --depth 1 https://github.com/hyoo-ru/mam.git app && npm install`.Angularangular.dev/installation2026-08-13Vuevuejs.org/guide/quick-start.html2026-08-13
무게와 로딩
Angular 2개 중 0개, Vue 2개 중 2개 · Vue 앞섬브라우저가 무엇을 내려받고, 페이지가 반응하기까지 얼마나 기다리는지.AngularVueTodoMVC bundle, gzip87.7 KB36.6 KBVue가 Angular보다 58% 아래What the browser actually downloads for a small but complete application, compressed the way a server would send it.Every JavaScript and CSS asset referenced by the production `index.html`, gzipped at level 9 and summed. Unlike the line count, styling is included everywhere and is comparable: the shared `todomvc-app-css` is compiled into each tastejs example’s shipped CSS, and $mol compiles its styles into the JavaScript bundle, leaving its `web.css` a 38-byte comment. The `base.js` page furniture from `todomvc-common` is excluded everywhere, including its Angular equivalent. Built artifacts come from the tastejs repository; the $mol bundle from the deployed todomvc.hyoo.ru.Angulargithub.com/…/angular2026-08-13Vuegithub.com/…/vue2026-08-13Startup transfer259 KB195 KBVue가 Angular보다 25% 아래Bytes pulled over the network before the benchmark application is usable. Same application in every column, so the difference is the framework.Lighthouse total byte weight for the js-framework-benchmark application, reported as benchmark 34_startup-totalbytes. Transfer size, not gzip specifically.Angularnin-jin.github.io/…/table.html2022-02-05Vuenin-jin.github.io/…/table.html2022-02-05
속도
Angular 7개 중 1개, Vue 7개 중 6개 · Vue 앞섬변경이 화면에 닿기까지 걸리는 시간과, 그동안 붙잡고 있는 메모리.AngularVueCreate 1,000 rows209 ms201 msVue가 Angular보다 3.9% 아래Time to put a thousand fresh rows on the screen. This is the wait after hitting a filter or opening a list.js-framework-benchmark 01_run1k, arithmetic mean of 10 runs.Angularnin-jin.github.io/…/table.html2022-02-05Vuenin-jin.github.io/…/table.html2022-02-05Partial update1,160 ms1,146 msVue가 Angular보다 1.2% 아래Touching every tenth row of a thousand, sixteen times. This is where a framework either finds the changed rows or re-checks everything.js-framework-benchmark 03_update10th1k_x16, arithmetic mean of 10 runs.Angularnin-jin.github.io/…/table.html2022-02-05Vuenin-jin.github.io/…/table.html2022-02-05Swap two rows1,554 ms178 msVue가 Angular보다 89% 아래Two rows trade places out of a thousand. The ideal answer is two DOM moves, and the gap here shows who gets close to it.js-framework-benchmark 05_swap1k, arithmetic mean of 10 runs.Angularnin-jin.github.io/…/table.html2022-02-05Vuenin-jin.github.io/…/table.html2022-02-05Remove one row55 ms37.9 msVue가 Angular보다 31% 아래Deleting a single row out of a thousand. The smallest possible change, so it measures the fixed cost of reacting at all.js-framework-benchmark 06_remove-one-1k, arithmetic mean of 10 runs.Angularnin-jin.github.io/…/table.html2022-02-05Vuenin-jin.github.io/…/table.html2022-02-05Memory after load1.59 MB1.37 MBVue가 Angular보다 14% 아래Heap the framework occupies with nothing on the page yet.js-framework-benchmark 21_ready-memory, single run.Angularnin-jin.github.io/…/table.html2022-02-05Vuenin-jin.github.io/…/table.html2022-02-05Memory with 1,000 rows3.03 MB3.47 MBAngular가 Vue보다 13% 아래Heap once a thousand rows are on screen. On a phone this is the difference between staying alive in the background and being killed.js-framework-benchmark 22_run-memory, single run.Angularnin-jin.github.io/…/table.html2022-02-05Vuenin-jin.github.io/…/table.html2022-02-05Startup blocking time149 ms16.5 msVue가 Angular보다 89% 아래How long the main thread is busy during startup, so taps and scrolls do nothing.js-framework-benchmark 32_startup-bt (Lighthouse total blocking time), arithmetic mean of 4 runs.Angularnin-jin.github.io/…/table.html2022-02-05Vuenin-jin.github.io/…/table.html2022-02-05
내장 기능
Angular 10개 중 5개, Vue 10개 중 0개 · Angular 앞섬프레임워크가 함께 제공하는지, 라이브러리를 가져와야 하는지.AngularVueRouter있음있음둘 다 있음Whether URLs and navigation come from the framework project itself, or you go pick a library and own that choice forever.Built in means the framework project ships it itself: its own package, or one the same team maintains and publishes as official. A library from anyone else counts as no, however popular or de-facto standard it has become, which is why routing is a yes for Angular and a no for React. The same cut is applied to all six frameworks, and every value links to the official page it was read from. Yes when that project publishes and documents a routing solution of its own. No when its own docs send you to a third-party project instead.Angularangular.dev/guide/routing2026-08-13Vuerouter.vuejs.org2026-08-13Localization있음없음Angular 있음, Vue 없음Translating an application is rarely planned at the start and always arrives later.Built in means the framework project ships it itself: its own package, or one the same team maintains and publishes as official. A library from anyone else counts as no, however popular or de-facto standard it has become, which is why routing is a yes for Angular and a no for React. The same cut is applied to all six frameworks, and every value links to the official page it was read from. Yes when that project publishes and documents localization of its own. An official CLI add-on that wires up somebody else’s i18n library is a no, because the library is still somebody else’s.Angularangular.dev/guide/i18n2026-08-13Vuevuejs.org/api2026-08-14Theming있음없음Angular 있음, Vue 없음Dark mode and brand colours without inventing your own CSS variable convention.Built in means the framework project ships it itself: its own package, or one the same team maintains and publishes as official. A library from anyone else counts as no, however popular or de-facto standard it has become, which is why routing is a yes for Angular and a no for React. The same cut is applied to all six frameworks, and every value links to the official page it was read from. Yes when that project publishes and documents a theming mechanism of its own. No when the word does not appear in its official API reference, which is the page linked, so the absence can be checked directly.Angularmaterial.angular.dev/guide/theming2026-08-13Vuevuejs.org/api2026-08-13List virtualization있음없음Angular 있음, Vue 없음Long lists stay smooth because off-screen rows are never rendered. Without it, someone eventually bolts a library onto a list that already shipped.Built in means the framework project ships it itself: its own package, or one the same team maintains and publishes as official. A library from anyone else counts as no, however popular or de-facto standard it has become, which is why routing is a yes for Angular and a no for React. The same cut is applied to all six frameworks, and every value links to the official page it was read from. Yes when that project publishes and documents lazy or virtual rendering of long lists. No when no such component appears in its API reference.Angularmaterial.angular.dev/…/overview2026-08-13Vuevuejs.org/api2026-08-14Offline support있음없음Angular 있음, Vue 없음A service worker set up by the framework rather than copied from a blog post.Built in means the framework project ships it itself: its own package, or one the same team maintains and publishes as official. A library from anyone else counts as no, however popular or de-facto standard it has become, which is why routing is a yes for Angular and a no for React. The same cut is applied to all six frameworks, and every value links to the official page it was read from. Yes when that project ships the service worker integration: a module it builds and registers for you. No when the docs only show where to drop your own sw.js and how to register it with the browser API, because that is the browser’s feature rather than the framework’s.Angularangular.dev/ecosystem/service-workers2026-08-13Vuevuejs.org/…/tooling.html2026-08-14Server rendering있음있음둘 다 있음Rendering to HTML on the server, for search engines and for the first paint.Built in means the framework project ships it itself: its own package, or one the same team maintains and publishes as official. A library from anyone else counts as no, however popular or de-facto standard it has become, which is why routing is a yes for Angular and a no for React. The same cut is applied to all six frameworks, and every value links to the official page it was read from. Yes when that project publishes and documents a server rendering API of its own. No when its published module list contains no such module.Angularangular.dev/guide/ssr2026-08-13Vuevuejs.org/…/ssr.html2026-08-13Tests without a DOM없음없음둘 다 없음Components testable as plain objects, with no browser and no jsdom to boot up first.Built in means the framework project ships it itself: its own package, or one the same team maintains and publishes as official. The same cut is applied to all six frameworks, and every value links to the official page it was read from. Yes when a component can be instantiated and asserted on with no document in play — the test never reaches for one. No when a DOM has to exist before a component can render at all, which is what every official testing guide here prescribes when it tells you to install jsdom, happy-dom or a browser. The question is whether a DOM is required, not whether the runtime happens to have one available: a runtime that provides a document nobody asks for does not make the test a DOM test.Angularangular.dev/…/components-basics2026-08-14Vuevuejs.org/…/testing.html2026-08-13Dependency injection있음있음둘 다 있음Swapping a real service for a fake one in a test without touching the component that uses it.Built in means the framework project ships it itself: its own package, or one the same team maintains and publishes as official. A library from anyone else counts as no, however popular or de-facto standard it has become, which is why routing is a yes for Angular and a no for React. The same cut is applied to all six frameworks, and every value links to the official page it was read from. Yes when that project documents a way to hand a component a value from outside it and replace that value later, in a test or in another host. Context APIs count: the bar is a documented mechanism, not a particular shape of container.Angularangular.dev/guide/di2026-08-13Vuevuejs.org/…/provide-inject.html2026-08-14Forms있음없음Angular 있음, Vue 없음Validation, dirty state and submission handled by the framework instead of a fourth form library per team.Built in means the framework project ships it itself: its own package, or one the same team maintains and publishes as official. A library from anyone else counts as no, however popular or de-facto standard it has become, which is why routing is a yes for Angular and a no for React. The same cut is applied to all six frameworks, and every value links to the official page it was read from. Yes when that project documents a form API that goes past binding one input to one variable, covering at least submission handling or validation state. Two-way binding on its own is a no.Angularangular.dev/guide/forms2026-08-13Vuevuejs.org/…/forms.html2026-08-14Typed templates있음있음둘 다 있음A typo in a template is caught by the compiler, not by a user.Built in means the framework project ships it itself: its own package, or one the same team maintains and publishes as official. A library from anyone else counts as no, however popular or de-facto standard it has become, which is why routing is a yes for Angular and a no for React. The same cut is applied to all six frameworks, and every value links to the official page it was read from. Yes when the framework’s official TypeScript documentation covers type checking of its template or view layer.Angularangular.dev/…/template-typecheck2026-08-13Vuevuejs.org/…/overview.html2026-08-13
생태계와 시장
Angular 4개 중 2개, Vue 4개 중 1개 · Angular 앞섬사람을 구하기, 검색해서 찾기, 만들어진 부품을 구하기가 얼마나 쉬운지.AngularVueGitHub stars100,99054,230Angular가 Vue보다 86% 위A popularity signal, and nothing more. It says how many people bookmarked the repository, not how many shipped with it.`stargazers_count` from the GitHub API for the repository that holds the framework's current source.Angulargithub.com/angular/angular2026-08-13Vuegithub.com/vuejs/core2026-08-13npm downloads5,983,187 per week14,550,122 per weekVue는 Angular의 2.4×The closest thing to a usage count. Inflated by CI runs, but inflated the same way for everyone.npm registry downloads for the last full week, for the package you install to use the framework.Angularapi.npmjs.org/…/core2026-08-13Vueapi.npmjs.org/…/vue2026-08-13Stack Overflow questions306,418107,927Angular는 Vue의 2.8×How likely it is that your problem was already asked and answered by someone else.Question count of the framework's Stack Overflow tag, via the Stack Exchange API.Angularstackoverflow.com/…/angular2026-08-13Vuestackoverflow.com/…/vue.js2026-08-13npm maintainers22양쪽이 같은 값을 보고합니다How many people can publish a release. A low number is a bus factor.Length of the `maintainers` array in the npm registry metadata of the framework's primary package.Angularregistry.npmjs.org/@angular/core2026-08-13Vueregistry.npmjs.org/vue2026-08-13
보유 비용
Angular 3개 중 0개, Vue 3개 중 1개 · Vue 앞섬의존성 트리와 릴리스 이력이 여러 해에 걸쳐 요구하는 것.AngularVueAdvisories in shipped packages00양쪽이 같은 값을 보고합니다Known vulnerabilities in the packages that reach the browser. These execute on your users’ machines, which makes them a different class of risk from anything in the build toolchain.Each shipped package, at its installed version, queried against the OSV database. Counts packages carrying at least one advisory.Angularangular.dev/installation2026-08-13Vuevuejs.org/guide/quick-start.html2026-08-13Advisories in the dev tree00양쪽이 같은 값을 보고합니다Known vulnerabilities in the packages a fresh checkout installs. These run on developer and CI machines rather than in the browser, but somebody still has to triage every one.Total reported by `npm audit` on the starter project, straight after scaffolding it. Scaffolded on 2026-08-13 with each framework's own getting-started command: react `npm create vite@latest app -- --template react-ts`; vue `npm create vue@latest app -- --default`; svelte `npx sv create app --template minimal --types ts --no-add-ons --install npm`; solid `npm create solid@latest app -- --vanilla --ts --template basic`; angular `npx @angular/cli@21 new app --defaults --skip-git --package-manager=npm`; $mol `git clone --depth 1 https://github.com/hyoo-ru/mam.git app && npm install`.Angularangular.dev/installation2026-08-13Vuevuejs.org/guide/quick-start.html2026-08-13Breaking releases in 3 years60Vue는 없음, Angular는 6Major versions shipped since 2023. Every one of them is a migration someone on the team pays for.Count of major semver versions of the framework's primary npm package first published in the last three years. Left blank for packages that do not use semver majors.Angularregistry.npmjs.org/@angular/core2026-08-13Vueregistry.npmjs.org/vue2026-08-13
어떻게 측정하나
여기 있는 값은 모두 측정이나 외부 출처에서 왔고, 링크와 측정 날짜를 함께 달고 있습니다. 지표는 두 프레임워크가 모두 공개할 때만 카테고리 계산에 들어갑니다. 그러지 않으면 표가 더 채워진 쪽이 수치의 내용이 아니라 데이터의 양으로 이기게 됩니다. 아직 아무도 재지 않은 자리는, 추측하는 대신 그렇다고 적습니다.측정 방법과 출처는 GitHub에
프레임워크 제안하기
빠진 게 있나요? 이름을 적어 이슈를 열어 주세요. 프레임워크를 추가한다는 것은 측정값이 담긴 데이터 파일과, 라이브 테스트용 러너 페이지를 만든다는 뜻입니다. 둘 다 저장소에, 이미 있는 것들 옆에 놓여 있습니다.이슈 열기Type to search the documentation.