Entry point implementation in main.ts
platformBrowserDynamic().bootstrapModule(AppModule).catch(err => console.error(err));
Rootreducer in app.module.ts.
export class AppModule {constructor(private ngRedux: NgRedux<IAppState>) {this.ngRedux.configureStore(rootReducer, { counter: 0 });}}
Error listed missing dependencies even I have installed latest
let me know. What I am missing?
CodePudding user response:
Most likely you reviece this error due to deprecation of the library, first thing you see when visiting their page on npm is
This package has been deprecated Author message:
This package has moved. Please 'npm install @angular-redux/store' instead.
Have you tried installing npm install @angular-redux/store instead? If not, can you try installing it?