Passport.js : Authentication - Local Strategy1.Folder Structure project-root/ β βββ config/ # Configuration files β βββ db-connection.js # Database connection setup β βββ passport-config.js # Passport.js configuration β βββ session-config.js # Session configurati...Aug 15, 2024Β·6 min readΒ·52
Complete-BACKEND in One Video- 6PPπ MERN-definiton & roadmap Guide 0. Handling Errors : 1. import import mongoose from 'mongoose'; π Solution: // In package.json file add { .......... , "type": "module", } 2. Tips for fast exectuion { // In package.json file add ...Apr 18, 2024Β·1 min readΒ·33
Swiper JSπSwiper_js/demos <!DOCTYPE html> <html lang="en"> <head> <title>Document</title> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" /> <link rel="stylesheet" href="style.css"> </head> <body> ...Apr 16, 2024Β·1 min readΒ·11
REDUX - (Old) ποΈReferences: Concepts : https://github.com/LEARNING-1109/React-JS/tree/main/_bin/Self%20Work/ReactRedux Redux Code : https://github.com/LEARNING-1109/React-JS/blob/main/_bin/Self%20Work/ReactRedux/src/components/ReduxStore.js Redux is a predictabl...Mar 31, 2024Β·2 min readΒ·10
CRUD Operation - ToDo AppInitialization of State Variables and Button Selection // Selecting buttons from the DOM using IDs const btn_submitUI = document.querySelector('#btn-submitUI'); const btn_updateUI = document.querySelector('#btn-updateUI'); // States to manag...Mar 28, 2024Β·2 min readΒ·36
16 useContext() - State Management - NextjsTopic 16: Context API Topic 17: Redux StateManagement Topic 18: Redux Toolkit and Immer 1. Introduction to State Management: Understanding State in React: State refers to data that can change over time within a component. Components can have lo...Mar 28, 2024Β·5 min readΒ·15
01 - 03 : Introduction to React.js/NEXTInstallation npx create-next-app cd project-name npm run dev Topic 4: Props and State 4.1 Props (Properties): Inputs to React components passed from parent to child. Immutable and accessed via props in functional components or this.props in cla...Mar 23, 2024Β·4 min readΒ·17