-
Host Angular App and NodeJS App on Same Domain
In this tutorial, we will discuss the steps to host angular app (front-end) and NodeJS App (back-end API) on same domain. The idea is that we will have a folder…
-
7 Steps to Get Started with GitLab
This tutorial describes the 7 basic steps to clone a GitLab repository on local machine and then the commands to push the changes back to the GitLab environment.
-
Search Engine Optimization Guide for WordPress Website
Search engine optimization (SEO) is a combination of certain techniques and procedures for increasing the visibility of the website in search engines by optimizing the content of the website.
-
Deploy NodeJS App in Heroku
This tutorial describes the steps to deploy nodejs app in Heroku.
-
Get Started with Angular 8
Learn one way to build applications with Angular and reuse your code and abilities to build apps for any deployment target. For web, mobile web, native mobile, and native desktop.…
-
7 Steps To Create Hello World App in NodeJS using ExpressJS Framework
Download and install node.js Create a folder and CD into that folder using using node.js command prompt run the command npm init To install and use expressjs ( Fast, unopinionated,…
-
WordPress Performance Improvement Checklist
WordPress performance really matters because no one wants to visit a website which takes lots of loading time. A good loading time for a website is less than 2 minutes.…
-
WordPress Plugin Development Cheat Sheet
WordPress plugins are used to extend the functionality of a WordPress website. There are about 51,000+ plugins available in WordPress’s official plugins repository at the writing of this post. There…
-
How to Add Quill Editor in Angular Project
This post describes the steps to integrate Quill Editor in an angular project. Run the following commands in your angular project directory: Inside app.module.ts or any shared module import the…
-
How to add Like/Love reactions in angular
This blog post describes step by step process to add like/love reactions in angular project. Step 1: Create a component by using the command ng g c e.g ng g…
-
How to Display the Index in Reverse Order for *ngFor Angular
Let’s say that we have data in array e.g tasks = [‘task 5’, ‘task 4’, ‘task 3’, ‘task 2’, ‘task 1’]. Now when we will use ngFor then it will…
-
How To Develop Custom WordPress Plugin from Scratch using OOP
This post describes the exact step to develop a custom WordPress plugin from scratch using Object-Oriented Programming. Go to https://wppb.me/, fill the form and download your zip file Edit the…