skip to Main Content

Server not connect to mongoDB

I am having trouble connecting my server to MongoDb database using mongoose. The server will start and then crash while trying to connect to mongoDB. the error is getting caught in db.js and then exiting the program. It seems the…

VIEW QUESTION

Mongodb – If Token is not Present I want to redirect the page to login but its not working. When no token is present or logout i want to redirect the page login

I am Using React Router Dom V6 Here if(!localStorage.getItem("token")){ navigate("/login") } is not Working import React,{useState,useEffect} from 'react'; import axios from 'axios'; import { useNavigate } from 'react-router-dom'; const Home = (props) => { const [user,setUser]=useState(null); let navigate = useNavigate();…

VIEW QUESTION
Back To Top
Search