Questions tagged [zonejs]

Implements Zones for JavaScript

Links

127 questions
0
votes
3 answers

array of promises and Promise.all()

I have this array of Promises like: let promisesArray = [ service1.load('blabla'), service2.load(), // throws an errors ]; and I want to execute them all and catch their errors like this Promise.all(promisesArray) .then(() =>…
Thomas
  • 75
  • 2
  • 5
0
votes
1 answer

How to resolve @angular dependencies when using ExpressJS and Angular2?

I'm trying to write a web application with ExpressJS and Angular2. Zone.js appears to be trying (unsuccessfully) to load some @angular libraries, but I'm not sure how to approach fixing it. My process so far looks like this: Copied into my…
Micheal Hill
  • 1,619
  • 2
  • 17
  • 38
0
votes
1 answer

ReferenceError: cliSystemConfigPackages is not defined

I started to program Angular 2, and i got Error message, i saw this answer: Error: ReferenceError: cliSystemConfigPackages is not defined and nothing solve the problam. this is the Erorr: zone.js:323 Error: ReferenceError:…
Elior Sastiel
  • 1,074
  • 2
  • 10
  • 21
0
votes
0 answers

Angular 2: can not find @angular modules in RC 1 version

I started writing angular2 application with RC1 version. As described in the angular.io docs I created separate system.config.js file in the root. // system.config.js (function (global) { var map = { 'app': 'app', 'rxjs':…
Kunal Sharma
  • 371
  • 2
  • 20
0
votes
2 answers

Angular 2 events get postponed strangely when I include some other non-angular script

I have encountered a strange problem when using angular 2 beta RC. Events get postponed if I include an external script I wrote into any angular 2 project: