Questions tagged [ngxs]

NGXS - Provides State Management for Angular apps based on a Event Sourcing model.

Questions about NGXS

The way we (the ngxs team) would prefer getting questions is on stackoverflow with the ngxs tag. And that we only post issues (bugs) to github.

By having questions on stackoverflow instead of the github issues, they don't get lost when we close the issue.

If you are unsure if your problem is bug or not, it's better to post it here on stackoverflow. The ngxs team monitors stackoverflow, and will try to answer your question as soon as possible, so you will have the same attention here.

You can also try joining our slack channel and ask your question there, but again I think it's better that we populate stackoverflow with the questions and answers as they are easily searchable and indexed by google.

541 questions
-3
votes
2 answers

How can I get the error from nestjs to angular with pipe()?

Show code this.authService .login(payload) .pipe( map((e: any) => e.token), tap(e => dispatch(new AuthLoginSuccess(e))) ) .subscribe(); i am trying to show the error returning from nestjs backend to my angular frontend. The above…
Achu
  • 3
  • 1
  • 6
1 2 3
36
37