Hacker News new | ask | show | jobs
by Yuioup 2800 days ago
I know this is going to sound like blasphemy, but is the TS version also going to support Angular?
2 comments

You can already use Redux with any UI layer or framework, whether it be React, Angular, Vue, jQuery, or vanilla JS.

The starter kit package just provides some additional utilities for common use cases. You could use it in a TS app already, you'd just have to stub out the type declarations yourself. Reworking the package to be written in TS is mostly to allow easier integration with users building their apps in TS.

isn't ngrx the popular store implementation for angular projects?
Pretty much. I'm using ngxs in my ng6 project at work and it'a fantasic library. Way less boilerplate than Redux w/TS.