React-Helmet-Async SEO for Reactjs App
React-Helmet Async In the modern-day digital age, SEO (search engine optimization) is a crucial part of having a strong online presence. Seo includes optimizing your website or web application to enhance its visibility and rating in search engine outcomes pages (engines like Google). One of the key additives of search engine optimization is adding meta … Read more
What is Swiperjs? Creating Dynamic Sliders with Swiper.js in React
Introduction SwiperJS is a popular open-source JavaScript library that allows developers to create responsive and touch-enabled sliders and carousels for their web and mobile applications. It is designed to be lightweight, customizable, and easy to use, making it a popular choice for web developers who want to add interactive and engaging content to their websites. … Read more
Create an authentication module in NestJs using local-strategy
Step 1: Create auth module (make it individual) stuff needs in authentication: step 2: import the passport module in auth module Step 3: Create the folder strategy and inside the folder create new file local.strategy.ts step 4: create auth guard
Web Scraping & storing in database in NestJs using Puppeteer and Prisma.
First of all, web scraping is the phenomenon of fetching/extracting contents and data from an existing website with the help of bots. In this blog, we will be using puppeteer package to scrape data. Puppeteer is headless chrome node API. It is an automation tool. Get started We are going to scrape book details from … Read more
Components available in Formik Forms
Formik is a popular library in the React ecosystem that helps developers easily manage complex forms. It offers a set of components and hooks that you can use to quickly and efficiently create dynamic and validated forms. In this blog, we look at the components available in Formik modules and how they can be used … Read more
“Mastering Navigation in React: A Guide to React Router”
React Router enables developers to define routes declaratively in their React components and handle changes in the browser URL without having to reload the page.
USE OF EXPANSION
We use Expansion in Flutter to create an expandable widget that allows users to show or hide content by toggling an arrow icon or clicking on the widget itself. The Expansion widget is commonly used to create collapsible and expandable sections of content, like in an FAQ section or an app settings menu. The Expansion … Read more
MVVM ARCHITECTURE FOR API INTEGRATION
The MVVM (Model-View-ViewModel) architecture is a popular architectural pattern used in many modern software applications. It is used to separate the concerns of the presentation layer (UI) from the business logic and data access layers. In Flutter, the MVVM architecture can be implemented using various approaches, but the most common one is by using the … Read more
Data seeding in NestJs using Faker and Prisma ORM.
First of all, data seeding is the mechanism of populating a database with dummy data. It is very useful in development of any system. It helps in automated testing and also increases the efficiency of database management. Data seeding can be done in several ways, but in this blog we are going to use faker … Read more
How to create a simple CRUD operation in NestJs?
Step 1: Create new nestjs project Step 2: Set up Prisma If you don’t know how to set up Prisma then click here for the Prisma setup tutorial, if you know then go to the next step Step 3: Create a user module Step 4: Set up CreateUserDto Step 5: Set up user.service.ts Step 6: … Read more