In this tutorial, I’ll give you an example of how to use TypeScript and Angular 13 ngx-cookie-service to generate a random cookie and X-Auth token inside the browser.
ng new sampleapp
cd sampleapp
npm i ngx-cookie-service
<p> Successfully set randomly generated cookie <b>X-Auth-Token</b> </p> <br/> <h2> <a href="https://angular-ivy-1lrgdt.stackblitz.io/" target="_blank">Click here to see the Cookie</a> </h2> <p> Get Cookie: {{cookieValue}} </p>
import { Component, VERSION } from '@angular/core'; import { CookieService } from 'ngx-cookie-service'; import { v4 as uuidv4 } from 'uuid'; @Component({ selector: 'my-app', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { name = 'Angular ' + VERSION.major; cookieValue = ''; constructor(public cookieService: CookieService) { this.cookieService.set('X-Auth-Token', uuidv4()); this.cookieValue = this.cookieService.get('X-Auth-Token'); } }
We evaluated the performance of Llama 3.1 vs GPT-4 models on over 150 benchmark datasets…
The manufacturing industry is undergoing a significant transformation with the advent of Industrial IoT Solutions.…
If you're reading this, you must have heard the buzz about ChatGPT and its incredible…
How to Use ChatGPT in Cybersecurity If you're a cybersecurity geek, you've probably heard about…
Introduction In the dynamic world of cryptocurrencies, staying informed about the latest market trends is…
The Events Calendar Widgets for Elementor has become easiest solution for managing events on WordPress…