Follow the below steps for installation node Js in Windows First Download the .msi file from below website and install by doing next and install. https://nodejs.org/en/download/ When Install please open your command prompt window Short wayWindow + rIts comes up…
Author: Maxester
What is Node Js
Node.js is a JavaScript-based platform built on Google Chrome’s JavaScript V8 Engine. Node.js allows us to run JavaScript on the server. Create a file name app.js and paste below code like below screenshot After this run below commandnode app screenshot…
How does React Work?
React is a Javascript library created by Facebook. It creates a virtual DOM in memory. React Only changes what needs to change not complete page load which makes the application faster. React JS latest version 17.0.2 (June 2021) To use…
Introduction Of React JS
What is React JS? React JS is a popular javascript framework that allows us to create reusable components. It’s a very efficient, declarative, and flexible Javascript library. Start with setup React Js and create a project. First, install npm in…
How To Install MySQL on Ubuntu 18.04
It’s very easy to install MySQL on the Ubuntu server by using the below commands sudo apt update sudo apt install mysql-server sudo mysql_secure_installation For details follow the below steps 1st Step First, of all run the command sudo apt…
Parallel ajax request using Jquery
Let us assume we need to hit a lot of URLs to append data to a page this so to reduce the time we need to make these requests simultaneous. The below code contains an array of JSON values these…
404 page not found in Laravel
In Laravel you can easily add 404 page because Laravel already has 404 functionality. What you have to do You have to creates a new folder “errors” in resources/views/ After that create a file name 404.blade.php and put in to…
PHP Code for Upload File/Image to the server using Volley in Android
This code will help you upload image to server which I have uploaded on ” “http://seoforworld.com/api/v1/file-upload.php” For using this code create a page with the name file-upload.php.Also, create a directory with name of images Copy this code in file-upload.php Image…
How to install SSL certificate in GoDaddy hosting Cpanel
Follow the below steps1. Login in to Cpanel and search SSL/TLS in Security click on it SSL has same account with that domain name skip these step2. A new screen comes with 4 options click on 2nd one (Certificate Signing…
React Js Directly in HTML
To use the React Js directly in the HTML file. Use the below steps.1. Add the CDN links of React Js files in the Head section.2. Add babel Js too for Compilation3. Make a Class by inheriting of React component.…