RIni
RIni

Reputation: 179

how to implement redux in angular9?

I am trying to use redux in my application but I am getting error as: The target entry-point "@angular-redux/store" has missing dependencies: - redux - redux-devtools-extension

Any suggestions.

Upvotes: 0

Views: 1634

Answers (3)

Manu Mohan
Manu Mohan

Reputation: 1814

As it said,

please install it.

npm install redux-devtools-extension .

Eventhough its a dev dependency, this we've to install manually

Upvotes: 1

Raj Patel
Raj Patel

Reputation: 109

You can install implement redux in angular by three dependencies.

npm install redux --save
npm install @angular/core --save
npm install redux-devtools --save

Upvotes: 1

Jesse
Jesse

Reputation: 2597

Though they should have come in as dependencies with the initial package install, try manually installing redux and redux-devtools:

npm install redux
npm install redux-devtools

Upvotes: 0

Related Questions