How can you create cookies in Angular 6? For AngularJS there was ngcookie
. What is the equivalent way to create cookies in Angular 6?
npm install ngx-cookie-service --save
import { CookieService } from 'ngx-cookie-service';
CookieService
to module's providers.cookie.get(nameOfCookie)
for getting a specific cookie,
use cookie.set(nameOfCookie,cookieValue)
for adding a new cookie.