porobertdevblog.porobert.dev·Oct 16, 2024Sessions, Cookies and AuthenticationAbout The goal of this article is to complement the lesson from The Odin Project curriculum. Initially was written for personal use to try to understand better how this work and make information stick to my brain, but I chose to make it public hoping...Discuss·63 readsBackendJavaScript
Taiwo Ogunolaunicdev.hashnode.dev·Sep 2, 2024End-to-end Guide to building a Reliable Authentication System for a Startup MVP - Part 2In this part of our guide, we will walk you through the process of integrating Facebook OAuth for user authentication. This step-by-step tutorial will help you create a Facebook OAuth client, configure the necessary settings, and implement the Facebo...Discuss·46 readsEnd-to-end Guide to building a Reliable Authentication System for a Startup MVPOpen Source
Taiwo Ogunolaunicdev.hashnode.dev·Aug 30, 2024End-to-end Guide to building a Reliable Authentication System for a Startup MVP - Part 1As a startup, you’re always racing against time. Speed is crucial—you need to build, launch, and iterate quickly. That’s why many startups opt to outsource their authentication systems to third-party providers like Auth0, Firebase, or Supabase. These...Timothy Adeyeye and 1 other are discussing this2 people are discussing thisDiscuss·23 likes·88 readsEnd-to-end Guide to building a Reliable Authentication System for a Startup MVPfacebook oauth
Ayush Kumarkrayush1109.hashnode.dev·Aug 15, 2024Passport.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...DiscussBackend - Node, DB, Authpassportjs
Ayush Kumarkrayush1109.hashnode.dev·Jun 24, 202402 config: Authentication- Login, Logout, Forgot📝0.1 ./app.js // Load environment variables from .env file require('dotenv').config({ path: './.env' }); // Import route handlers var indexRouter = require('./routes/index.routes'); var userRouter = require('./routes/user.routes'); // Create an Ex...DiscussBackend - Node, DB, Authauthentication
Zihan Linzihanlin.hashnode.dev·May 21, 2024Authentication with express-session and Passport.jsStep-by-Step Process 1. User Submits Login Form User Action: The user fills in their credentials (e.g., email and password) and submits the login form. Frontend Action: This sends a POST request to the server with the user's credentials. 2. S...Discusssoftware development
ReedforfreeCodeCampfreecodecamp.org·Sep 19, 2022How to Authenticate Your React App with Passport.jsAuthentication is a major part of any serious React application. You need to have a good and reliable way to authenticate your users in your developer tool belt. There are dozens of authentication solutions to choose from today, many of which come wi...Discussauthentication
freeCodeCampforfreeCodeCampfreecodecamp.org·May 3, 2019How to set up Twitter OAuth using Passport.js and ReactJSBy Leanne Zhang Getting started This is a simple authentication tutorial for building a Twitter Authentication web application using Passport API. It’s a side project that I worked on for education purposes. I broke down this tutorial into two parts....Discussauthentication