Reputation: 26437
The question is: is Ember using RSVP library for promises implementation as hard dependency? I mean: can't ember go without rsvp.js? I've seen the docs but I didn't find any information, whether I can use some other promises implemenation.
Upvotes: 1
Views: 66
Reputation: 276286
Yes, Ember has a hard dependency on RSVP - unless you're willing to shim it by writing an adapter from another library you'll have to use it.
On the bright side RSVP is a relatively fast and modern promise implementation with unhandled rejection tracking and pretty strong tooling.
Upvotes: 2