Posts

How to choose right backend technologies?

For the developers, when we get new requirements of the project and that contains requirements of the backend.    At that time we were confused about choosing  the right backend technologies.    So I also experienced the same thing and got the solution from this blog. https://iamprafful.medium.com/how-to-choose-the-right-backend-39a7ac32e1     Hope you can also get the help from this for choosing the right backend technologies.

How to install magento in easy steps?

Image
Magento is very easy to install. So below are the prerequisite for installation: 1. The PHP version must be required 7.4 version or higher than it. 2. Below extension must be enabled: ext-bcmath, ext-ctype, ext-curl, ext-dom, ext-gd, ext-hash, ext-iconv, ext-intl, ext-mbstring, ext-openssl, ext-pdo_mysql, ext-simplexml, ext-soap, ext-xsl, ext-zip, lib-libxml Now, start exactly how to install magento and setup. So below are the steps for that: 1. First of all need to install composer. For that visit below link:    https://getcomposer.org/download/ 2. Create the DB to MySQL. For Example magento2.3.7 3. Donwload the magento 2.3.7 (You can also download the higher version.) version source code from below link: https://magento.com/tech-resources/download 4. Now set the database details, magento front and admin related details to below commond and run this commpond to commond promt to your current magento project directry path:   For ex. of path:  D:\xampp\htdocs\magento237> php bin/magen

How to install Angular to local machine?

  For installation of Angular to local machine refer the below link:    https://angular.io/guide/setup-local

How to see unused variables in Visual Studio Code for AngularJs?

 Looking for the unused variables in VS code editor, need to add below line to tslint.json file  under "rules" add "no-unused-variable":true

What is a Good Load Page Time?

 2 seconds time is Good Load Page Time.

How to Build an AngularJs App?

 For creating build in Angular Js, run the below command in project directory:   ng build --prod --aot --output-hashing=all