Link to home
Start Free TrialLog in
Avatar of Howard Bash
Howard BashFlag for United States of America

asked on

angularls and plnkr

I have created a project using plnkr.co.  I selected angular 2 with Typescript.  When I attempt to run it,  the page says "loading..."  and that is it.

Please advise.

I have included the link here:

My Code
Avatar of Julian Hansen
Julian Hansen
Flag of South Africa image

Did you do that from scratch or reference another plunker - it seems similar to this one
https://plnkr.co/edit/AvJOMERrnz94ekVua0u5?p=preview
Which also does not work.

Are you looking for an Angular 2 boilerplate ?
Avatar of Howard Bash

ASKER

I literally just selected new/anular 2.0 with typescript and then saved and tried to run and it seems to be stuck on loading...
Ah ok so that is a Plunker generated app - which is why I found others the same - that also don't work.

Will take a look.
Hi,

I just tried the test page and it also doesn't complete loading.  Also,  is the plnkr configuration "wizard" broken?  I would have thought it would put together a working base framework.

The test works in Chrome and not in IE.
Work for me on Chrome...
User generated image
Yes.  For me as well (see last sentence of above comment).  However,  it doesn't explain the issue with using the plnkr template(s).
I think Plunker did not update this template... maybe just because they're not aware of the issue...
Who know?
https://github.com/angular/angular/issues/5957
That issue 5957 is almost a year old.  How is it possible that they're not aware of this?  It is an issue with their most current template.
Do you really ask me the question ? :D
Check this too (more recent) : https://plnkr.co/group

This is due to a bug in Zone.js (see: https://github.com/angular/zone.js/issues/456). The bug has since been fixed in more recent zone.js releases but the Angular team still needs to reflect those new versions in their docs and plunk seeds.

To fix this locally, just change the version of zone.js referenced in your plunk to 0.6.24 or 0.6.25.
 <head>
    <base href="." />
    <title>angular2 playground</title>
    <link rel="stylesheet" href="style.css" />
    <script src="https://unpkg.com/zone.js/dist/zone.js"></script>
    <script src="https://unpkg.com/zone.js/dist/long-stack-trace-zone.js"></script>
    <script src="https://unpkg.com/reflect-metadata@0.1.3/Reflect.js"></script>
    <script src="https://unpkg.com/systemjs@0.19.31/dist/system.js"></script>
    <script src="config.js"></script>
    <script>
    System.import('app')
      .catch(console.error.bind(console));
  </script>
  </head>

Open in new window


I'm a weenie with angular.  Can you tell me where and what to make that change?
ASKER CERTIFIED SOLUTION
Avatar of leakim971
leakim971
Flag of Guadeloupe image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Ok.  I see that neither work in IE.  But they work in chrome.

Thanks.
Angular and IE is not in love from the beginning of the story of the framework