TO THE NEW Blog PAGES

Drupal

Drupal 9/ Drupal 8 Custom Migration From CMS

What is Migration? Migration is an Extract, Transform, Load (ETL) process. Inside Drupal Migrate API, the extract phase is called source, the transform phase is called process, and the load phase is called destination. Before Understanding how to do custom migration, it is important to understand why to perform the custom migration. So there are […]

Sagar Verma
Sagar Verma
Read

Testing

Security Testing

You won’t ever want to implement software that frustrates your customers and has issues every two weeks. Prior to deploying software at the client’s location, security testing is an essential step. What is Security Testing? Software testing, which is done to find a software application’s flaws and vulnerabilities, includes security testing as a crucial component. […]

Ansha
Ansha
Read

Drupal

Progressive Web App (PWA) In Drupal

Introduction A contributed module for Drupal provides a drop-in replacement for the fundamental characteristics of a Progressive Web App, which has been available since Drupal 7. With the help of this module, your website will be able to respond swiftly to user interactions, never display an “offline” notice, and look exactly like a native app […]

Kartik Tandon
Kartik Tandon
Read

Android

Using work manager’s periodic work for less than 15 minutes

During our development journey, we do face situations where we require to perform some periodic and background tasks. So, to do so, we have multiple ways, but if it comes to the best way to perform these types of tasks in the context of clean code and optimized device resources usages, then we need to […]

Kuldeep Singh
Kuldeep Singh
Read

React.js

Fetch vs. Axios for making HTTP requests

What is API? Why do we need them? API stands for “Application Programming Interface,” which is a software intermediary that allows two applications to talk to each other. APIs simplify how developers integrate new application components into existing architecture, they help business and IT teams collaborate. Business needs often change quickly in response to ever-shifting digital […]

Piyush Yadav
Piyush Yadav
Read

Drupal

Use Drush command with Batch to update Node

In this tutorial, we are going learn how to create/update nodes with the help of the Drush command using  Batch API in Drupal. For that, we need to create a custom module. The file structure will be like below: Example: In the below example, we are updating the article content type Title field with a […]

Anurag Nagar
Anurag Nagar
Read

Front End DevelopmentMarketing

Unbounce landing pages development

What Is a Landing Page? In digital marketing, a landing page is a standalone web page created specifically for a marketing or advertising campaign. It’s where a visitor “lands” after they click on a link in an email, or ads from Google, Bing, YouTube, Facebook, Instagram, Twitter, or similar places on the web. What is […]

Muskan
Muskan
Read

AWSCloudDevOps

Manage Stateful ECS Services using REX-Ray

Introduction We have been looking for a solution that would help us to mount hundreds of GBs of storage in the ECS tasks spawned by specific ECS services. ECS cluster does provide an option to increase the storage allocated to the tasks, but that applies to all the ECS services running inside the cluster. Sometimes, […]

Navjot Singh
Navjot Singh
Read

Drupal

Password Migration in Drupal 9 from Drupal 7, WordPress, and Custom CMS

Password migration is basically part of website migration. We can migrate content, images, documents, categories, and other content very easily because these are almost straightforward. In migration, We pick the content from the source and put it into a destination which is called the lift-and-shift approach. In Drupal 9, Password migration is a bit tricky […]

Jeet Lal
Jeet Lal
Read

Front End Development

How to fetch API data in ReactJS ?

We can fetch data by using the Javascript fetch() method. The Fetch API is a new standard to server requests with Promises, it also includes additional features. This blog will help you understand the implementation of fetch API in both functional and class components by walking through each one with sample code. Let’s start – […]

Drupal

Progressively Decoupled App With React on Drupal

Decoupled Architecture To understand the term “Decoupled” we need to understand what “Coupled” is. A coupled (also known as “traditional” or “monolithic”) CMS knits together the front- and back-ends. Working off the same application, developers and content managers make adjustments to the back-end while users interact with the front-end, but both are experiencing, viewing, and […]

Shubham Joshi
Shubham Joshi
Read

Drupal

Check Drupal coding standard by phpcs in git pre-commit hook

In this tutorial, you will learn how to improve the custom code, theme and module, and general code development by using the pre-commit hook on git. Git pre-commit validates Drupal coding standards on files before committing them and returns a message to fix each line of code on the files having errors. Follow the next […]

Rajveer Singh
Rajveer Singh
Read