Cannot find module 'ngx-cookie-service'

10.2k Views Asked by At

Iam using Angular 12, I installed cookie by using: npm install --save ngx-cookie-service
in app.module.ts when I import 'CookieService' import { CookieService } from 'ngx-cookie-service'; I got this error message: Cannot find module 'ngx-cookie-service' or its corresponding type declarations.ts(2307) enter image description here

2

There are 2 best solutions below

0
dgates82 On BEST ANSWER

It looks like this is a reported issue with ngx-cookie-service version 12.0.1. Downgrading to 12.0.0 seems to fix the problem for now.

npm install [email protected]

-- UPDATE -- The issue is flagged as resolved with the release of version 12.0.2. Should be safe to install the latest now.

0
abdelgrib On

I had the same problem with version 13.1.2!

I solved this by running an : npm install.