Angular2: É lento?

Apenas dei uma olhada na última versão angular que a equipe angular lançou. Angular2 saiu e eles lançaram uma nova páginahttp://angular.io.

Lá eles têm um projeto de início rápido de 5 minutos que mostra rapidamente a nova sintaxe e o que você precisa usar para executar um novo aplicativo angular.

Eu apenas fiz todas as etapas para fazê-lo funcionar, mas demorou 4,93 segundos para carregar.

Só estou pensando, é angular 2 tão lento? Ou talvez eu perca alguns passos.

Aqui está o meu código

// app.es6

import {Component, Template, bootstrap} from 'angular2/angular2';

// Annotation section
@Component({
  selector: 'my-app'
})
@Template({
  inline: '<h1>Hello {{ name }}</h1>'
})
// Component controller
class MyAppComponent {
   constructor() {
     this.name = 'Alex!';
   }
}

bootstrap(MyAppComponent);

e index.html

<!-- index.html -->
<html>
  <head>
    <title>Angular 2 Quickstart</title>
    <script src="dist/es6-shim.js"></script>
  </head>
  <body>

    <!-- The app component created in app.js -->
    <my-app></my-app>

    <script>
      // Rewrite the paths to load the files
      System.paths = {
        'angular2/*':'angular2/*.js', // Angular
        'rtts_assert/*': 'rtts_assert/*.js', //Runtime assertions
        'app': 'app.js' // The my-app component
      };

      // Kick off the application
      System.import('app');
    </script>
  </body>
</html>

questionAnswers(3)

yourAnswerToTheQuestion