Categories

Friday, April 19, 2024
#919814419350 therichposts@gmail.com
Angular 12Bootstrap 5

Angular 12 Local Storage Working Demo

Angular 12 Local Storage Working Demo

Hello to all, welcome to therichpost.com. In this post, I will tell you, Angular 12 Local Storage Working Demo.

Working Demo
Angular 12 Local Storage Working Demo
Angular 12 Local Storage Working Demo

Angular12 came and if you are new then please below link:


Guy’s here is the working code snippet and please use carefully:

1. Firstly, here are the important commands we need to run inside terminal to get fresh angular 12 setup and we should have latest node version on our system:

npm install -g @angular/cli

ng new angulardemo

cd angulardemo

ng serve

//Here is the url, you need to run into your browser and see working angular test project
http://localhost:4200/

2. Now we need to run below command to install bootstrap for application good looks:

npm install bootstrap --save

3. Now we need to add below code into our angular.json file for get styles and scripts:

...
"styles": [
              ...
           
              "node_modules/bootstrap/dist/css/bootstrap.min.css",
            ],
"scripts": [
          ...
            
            "node_modules/bootstrap/dist/js/bootstrap.js",
            ]
...

4. Now we need to add below code into our src/app/app.component.ts file to make functions and events:

import { Component } from '@angular/core';
@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})

export class AppComponent {
   lSData : any;
   constructor( ){
   
    //set and get local storage data
    localStorage.setItem('lStorageData', 'Hi I am from LocalStorage!!'  );
    this.lSData = localStorage.getItem('lStorageData');
  }
  
 
  
}

6. Finally we need to add below code into our src/app/app.component.html file to get the final out on browser:

<div class="container py-5">
  <h3>{{ lSData }}</h3>
</div>

This is it friends, and if you have any kind of query then please comment below and don’t forget to run ng serve command in the end.

Jassa

Thanks

therichpost
the authortherichpost
Hello to all. Welcome to therichpost.com. Myself Ajay Malhotra and I am freelance full stack developer. I love coding. I know WordPress, Core php, Angularjs, Angular 14, Angular 15, Angular 16, Angular 17, Bootstrap 5, Nodejs, Laravel, Codeigniter, Shopify, Squarespace, jQuery, Google Map Api, Vuejs, Reactjs, Big commerce etc.

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.