Ninoos Al Katoni
Ninoos Al Katoni

Reputation: 97

Cannot find module 'ngx-cookie-service'

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

Upvotes: 4

Views: 12083

Answers (2)

abdelgrib
abdelgrib

Reputation: 1140

I had the same problem with version 13.1.2!

I solved this by running an : npm install.

Upvotes: 2

dgates82
dgates82

Reputation: 418

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.

Upvotes: 7

Related Questions