en
Feedback
Full Stack Camp

Full Stack Camp

Open in Telegram

Fullstack Camp | Learn. Build. Launch. Join us for a hands-on journey through HTML, CSS, JavaScript, React, Node.js, Express & MongoDB — all in one place. Use this bot to search for lessons. @FullstackCamp_assistant_bot DM: @Tarikey6

Show more
The country is not specifiedThe category is not specified
235
Subscribers
+124 hours
No data7 days
+230 days

Data loading in progress...

Similar Channels
No data
Any problems? Please refresh the page or contact our support manager.
Tags Cloud
No data
Any problems? Please refresh the page or contact our support manager.
Incoming and Outgoing Mentions
---
---
---
---
---
---
Attracting Subscribers
September '26
September '26
+3
in 1 channels
August '26
+7
in 1 channels
Get PRO
July '26
+17
in 1 channels
Get PRO
June '26
+3
in 0 channels
Get PRO
May '26
+59
in 0 channels
Get PRO
April '26
+30
in 1 channels
Get PRO
March '260
in 2 channels
Get PRO
February '26
+136
in 0 channels
Date
Subscriber Growth
Mentions
Channels
22 September+1
21 September+1
20 September0
19 September0
18 September0
17 September0
16 September0
15 September0
14 September0
13 September0
12 September0
11 September0
10 September0
09 September0
08 September+1
07 September0
06 September0
05 September0
04 September0
03 September0
02 September0
01 September0
Channel Posts

2
Happy New Year fam ❤️🎉
81
3
Discover What Websites Are Built With Using Wappalyzer If you have ever wondered what technology powers your favorite websites, Wappalyzer is the ultimate tool to uncover those secrets instantly. Acting as a powerful technology profiler, this tool scans any website to detect its Content Management System (CMS), e-commerce platforms, web frameworks, analytics tools, and payment processors. Whether you are a web developer looking to inspect a rival's tech stack, a sales professional hunting for leads using specific software like Shopify or HubSpot, or just a curious tech enthusiast, Wappalyzer turns public website signals into actionable technographic data. You can use it as a quick browser extension, a mobile app, or scale it up through its API to enrich your data and track competitive changes in real time. @fullstackCampp
93
4
No text...
86
5
My project has been selected for voting in the Nexus New Year Challenge 🎉, and the next step is the public vote! The top 3 winners (by votes) will receive their first Upwork contract 🌟, so your support really means a lot to me. Please click the link below and join the Nexus Telegram channel first, then vote (👍🏾) on my project using the link below. NB: Reactions from accounts that haven’t joined the channel are not counted, so please make sure you click the “Join Channel” button before reacting. Also, make sure you react to the project post on the official Nexus channel, not to this forwarded message. Thank you so much for your support!  Here is the link: https://t.me/nexus_tutorial/359
81
6
A Simple Guide to SEO & Social Sharing in Next.js (2026) Learn how to make your Next.js app easy to find on Google, AI tools, and social media platforms. Modern SEO in Next.js Search engines and AI crawlers can only read content that is already present when the page first loads. If your app waits to load data on the user’s browser (for example, using common data-fetching hooks without a starting value), crawlers will see an empty page. The fix is to load your data on the server first and provide it to the browser as a starting point. This way, search engines receive a fully built page, while your users still enjoy fast, interactive features. Key SEO Concepts to Set Up: 1. Central Page Information – Create a main hub for all your page details, like titles, descriptions, and keywords. This is also where you define special tags for social media (such as Open Graph and Twitter cards) so your links look great when shared. 2. Crawler Rules – Set up a guide for search engine bots that tells them which parts of your site they are allowed to scan. Make your public content open for indexing, but block private areas (like user dashboards or admin panels) to save your site's resources. 3. Site Map – Build a dynamic map of your entire website that lists every public page. This map pulls information from your database and helps search engines discover all of your content easily. 4. Social Preview Images – Set up an automatic image generator that creates a custom preview picture (for example, a 1200×630 pixel image) whenever someone shares a link on platforms like WhatsApp, X (Twitter), or Facebook. This ensures every shared link looks polished and matches your brand. 5. Smart Data Fetching – Always load your main page data on the server first and hand it off to the browser as a starting value. This pattern gives search engines the full content they need to index your page, while still allowing users to interact with filters, search, and pagination instantly.
103
7
No text...
56
8
Mawlid Mubarak 🤗🤗
275
9
No text...
118
10
No text...
100
11
Our Bot is backkk after being down for some time Big shout out to @EthioDeploy 🫡🫡
258
12
What are you working on currently?
156
13
Part 5 --- Logout & Token Expiry Gracefully Handling the end of a user's session gracefully is just as important as logging them in. When a user intentionally clicks logout, the application must immediately clear the stored token from localStorage and reset the global state to null, instantly reflecting the unauthenticated state across every component. However, sessions can also end unexpectedly when a JWT expires—modern tokens often include an exp claim that the server checks, returning a 401 HTTP status code if the time has passed. Our Axios response interceptor detects this specific 401 code, clears the stale token, and redirects the user to the login page, often displaying a friendly notification that their session has timed out. This proactive approach prevents dreaded "broken UI" scenarios where components try to fetch data with invalid credentials, ensuring the user is always met with a clear path back to regaining access. The Logout Function (in AuthContext) // context/AuthContext.jsx (inside the provider) const logout = () => {   localStorage.removeItem("accessToken");   localStorage.removeItem("user");   setUser(null);   // Optionally navigate using useNavigate if called inside a component }; Handling Expiry with a Notification We can enhance our Axios response interceptor to show a toast notification before redirecting, using a library like react-hot-toast. // utils/axiosInstance.js import toast from "react-hot-toast"; axiosInstance.interceptors.response.use(   (response) => response,   (error) => {     if (error.response?.status === 401) {       toast.error("Your session has expired. Please login again.");       localStorage.removeItem("accessToken");       localStorage.removeItem("user");       // Dispatch a custom event to let React Router know to redirect       window.dispatchEvent(new CustomEvent("unauthorized"));     }     return Promise.reject(error);   } ); Then, in your App.jsx, you listen for this event and navigate programmatically: // App.jsx (inside the component) useEffect(() => {   const handleUnauthorized = () => {     navigate("/login", { replace: true });   };   window.addEventListener("unauthorized", handleUnauthorized);   return () => window.removeEventListener("unauthorized", handleUnauthorized); }, [navigate]);
99
14
Part 4 --- Building the Full-Stack MERN Structure Connecting the frontend and backend into a cohesive MERN application requires careful coordination of ports, CORS policies, and environment variables. The React development server typically runs on port 5173, while the Express server runs on port 5000, necessitating a proxy configuration or explicit CORS middleware to allow cross-origin requests. To make API endpoints maintainable, developers define a centralized API client that points to the base URL of the backend, ensuring that if your server IP changes, you only update one file. This full-stack structure brings a new level of organization, often separating concerns into frontend components, frontend state stores, backend routes, backend controllers, and database models. With this architecture, your application becomes highly modular, easily extensible, and ready for deployment to platforms like Render or Vercel. Typical Project Folder Structure my-mern-app/ ├── client/                    # React Frontend (Vite) │   ├── src/ │   │   ├── components/        # Reusable UI pieces │   │   ├── pages/             # Route-level screens │   │   ├── context/           # AuthContext, ThemeContext │   │   ├── services/          # API service files (authService, productService) │   │   ├── utils/             # axiosInstance.js, helpers │   │   └── App.jsx │   └── package.json │ └── server/                    # Express Backend     ├── models/                # Mongoose models (User, Product)     ├── routes/                # Express route handlers     ├── controllers/           # Business logic     ├── middleware/            # auth.js (verifyToken), errorHandler.js     ├── config/                # Database connection     └── server.js Connecting Client to Server with CORS On the backend, ensure CORS is enabled to accept requests from your React origin. // server/server.js const cors = require("cors"); app.use(cors({ origin: "http://localhost:5173", credentials: true })); Environment Variables (.env) Never hardcode secrets! Use environment variables for the API URL and JWT secret. # client/.env VITE_API_URL=http://localhost:5000/api # server/.env PORT=5000 MONGODB_URI=mongodb://localhost:27017/myapp JWT_SECRET=your_super_secret_key_here ---
81
15
Network topologies
Network topologies
60
16
Part 3 --- Protected Routes & Authorization (Frontend) Frontend route protection is the user-facing gatekeeper of your application, ensuring unauthorized visitors cannot manually type URLs to access restricted dashboards or admin panels. The pattern involves creating a wrapper component, conventionally named ProtectedRoute, that checks the global authentication state—usually sourced from a Context or Zustand store that synchronizes with localStorage. While the authentication status is being verified (for instance, if the token exists but we haven't fetched the user's profile yet), the wrapper renders a loading spinner to avoid the visual flicker of redirecting from a login page. If the user is authenticated, the wrapper renders its child components (typically using Outlet in React Router v6 for nested routes). If not, it imperatively navigates the user back to the login screen using useNavigate, creating a seamless and secure browsing experience. Creating an Auth Context (Global User State) We need a global state to hold the current user and loading status. We'll use the Context API (or Zustand) so that the Navbar, ProtectedRoute, and any component can access the authentication status instantly. // context/AuthContext.jsx import { createContext, useContext, useState, useEffect } from "react"; import { getProfile } from "../services/authService"; const AuthContext = createContext(); export const AuthProvider = ({ children }) => { const [user, setUser] = useState(null); const [loading, setLoading] = useState(true); useEffect(() => { // Check if a token exists on app mount const token = localStorage.getItem("accessToken"); if (token) { // Verify the token by fetching the user profile getProfile() .then((userData) => setUser(userData)) .catch(() => { // If token is invalid, clear it localStorage.removeItem("accessToken"); localStorage.removeItem("user"); setUser(null); }) .finally(() => setLoading(false)); } else { setLoading(false); } }, []); const login = (userData, token) => { localStorage.setItem("accessToken", token); localStorage.setItem("user", JSON.stringify(userData)); setUser(userData); }; const logout = () => { localStorage.removeItem("accessToken"); localStorage.removeItem("user"); setUser(null); }; return ( <AuthContext.Provider value={{ user, loading, login, logout }}> {children} </AuthContext.Provider> ); }; export const useAuth = () => useContext(AuthContext); Implementing the ProtectedRoute Component This component uses the useAuth hook to determine if the user is authenticated. If loading is true, we show a spinner. If user is null, we redirect to /login. Otherwise, we render the child routes. // components/ProtectedRoute.jsx import { Navigate, Outlet } from "react-router-dom"; import { useAuth } from "../context/AuthContext"; const ProtectedRoute = () => { const { user, loading } = useAuth(); if (loading) { return <div className="spinner">Loading your session...</div>; } return user ? <Outlet /> : <Navigate to="/login" replace />; }; export default ProtectedRoute; Using in App.jsx We structure our routes so that all private pages are nested inside the <ProtectedRoute> component. // App.jsx import { BrowserRouter, Routes, Route } from "react-router-dom"; import { AuthProvider } from "./context/AuthContext"; import ProtectedRoute from "./components/ProtectedRoute"; import Login from "./pages/Login"; import Dashboard from "./pages/Dashboard"; import Profile from "./pages/Profile"; function App() { return ( <BrowserRouter> <AuthProvider> <Routes> <Route path="/login" element={<Login />} /> <Route element={<ProtectedRoute />}> <Route path="/dashboard" element={<Dashboard />} /> <Route path="/profile" element={<Profile />} /> </Route> </Routes> </AuthProvider> </BrowserRouter> ); }
87
17
Part 2 --- Axios Deep Dive: Instances & Interceptors While the native fetch API handles basic requests adequately, mature applications demand a much more robust HTTP client. Axios provides a superior API with request and response interceptor capabilities that act as middleware for every network call that leaves your browser. A request interceptor allows you to inspect, modify, or entirely cancel a request before it reaches the server, which is the perfect hook to inject your JWT token into the Authorization header automatically. Meanwhile, a response interceptor lets you globally handle errors like expired tokens, network failures, or server maintenance without cluttering your UI components with repetitive try/catch blocks. By centralizing this logic, Axios becomes the nervous system of your application, ensuring every interaction with the backend is smooth and secure. Installing Axios npm install axios Creating an Axios Instance Instead of writing the full http://localhost:5000/api URL in every component, we create a pre-configured instance. This instance holds the base URL and default headers, ensuring consistency across your entire codebase. // utils/axiosInstance.js import axios from "axios"; const axiosInstance = axios.create({   baseURL: "http://localhost:5000/api",   timeout: 10000, // 10 seconds   headers: {     "Content-Type": "application/json",   }, }); export default axiosInstance; Request Interceptor --- Automatically Attaching the Token This interceptor runs right before any request is sent. It pulls the JWT from localStorage and attaches it to the Authorization header. This means your components don't need to remember to pass the token—Axios handles it invisibly for every secured endpoint. // utils/axiosInstance.js (continued) axiosInstance.interceptors.request.use(   (config) => {     const token = localStorage.getItem("accessToken");     if (token) {       config.headers.Authorization = `Bearer ${token}`;     }     return config;   },   (error) => Promise.reject(error) ); Response Interceptor --- Global Error Handling & Token Expiry This interceptor catches the response before it reaches your component's .catch() block. If the server returns a 401 Unauthorized status (meaning the token is invalid or expired), we can clear the user session and redirect to the login page in a single centralized location. This saves you from writing if (error.status === 401) in every single API call you make. jsx // utils/axiosInstance.js (continued) axiosInstance.interceptors.response.use(   (response) => response, // Just pass successful responses through   async (error) => {     const originalRequest = error.config;     // Check if error is 401 and we haven't retried yet     if (error.response?.status === 401 && !originalRequest._retry) {       originalRequest._retry = true;       // Optional: Refresh token logic could go here       // For now, we just log out the user       localStorage.removeItem("accessToken");       localStorage.removeItem("user");       // Redirect to login page (React Router navigation will be triggered via event)       window.location.href = "/login";       return Promise.reject(error);     } return Promise.reject(error);   } );
70
18
Hello campers 💙 Hope your summer is going well. Big apologies for the post delayments 🙏 since we are finilizing our journey , from now on the contents will be short and introductory about deployments , security issues, AI , other stacks as a general.....
62
19
🌟 Week 9 Day 6 --- The Final Frontier: Axios, JWT & Full-Stack MERN Part 1 --- JWT Authentication Flow (Understanding the Backend) JSON Web Tokens are the modern standard for securing stateless APIs, particularly in MERN stacks where the frontend and backend are decoupled. The process starts when a user submits their credentials to a login endpoint; the Express server validates them, creates a signature using a secret key and the user's payload, and returns this signature as a long encoded string. The frontend application persists this token, typically inside localStorage or sessionStorage, allowing the user's session to survive even after closing the browser tab. For every protected request, the frontend reads this token and attaches it as a Bearer token in the HTTP headers. Upon receiving it, the backend decodes and verifies the signature, extracting the user's ID and permissions without needing to query the database for every request, making authentication both secure and incredibly fast. Example Backend Routes (Express) While this is a frontend lesson, understanding the backend contract is essential. Here's a simplified Express setup for context: js // server/server.js (Express) const jwt = require("jsonwebtoken"); const bcrypt = require("bcryptjs"); const User = require("./models/User"); app.post("/api/auth/register", async (req, res) => {   const { email, password } = req.body;   const hashedPassword = await bcrypt.hash(password, 10);   const user = new User({ email, password: hashedPassword });   await user.save();   res.status(201).json({ message: "User created" }); }); app.post("/api/auth/login", async (req, res) => {   const { email, password } = req.body;   const user = await User.findOne({ email });   if (!user || !(await bcrypt.compare(password, user.password))) {     return res.status(401).json({ message: "Invalid credentials" });   }   // Sign a JWT with the user's ID and email, expiring in 1 hour   const token = jwt.sign(     { id: user._id, email: user.email },     process.env.JWT_SECRET,     { expiresIn: "1h" }   );   res.json({ token, user: { id: user._id, email: user.email } }); }); Frontend API Service Functions We'll create a dedicated service file that uses our Axios instance to interact with these endpoints. jsx // services/authService.js import axiosInstance from "../utils/axiosInstance"; export const register = async (email, password) => {   const response = await axiosInstance.post("/auth/register", { email, password });   return response.data; }; export const login = async (email, password) => {   const response = await axiosInstance.post("/auth/login", { email, password });   // Store the token and user data immediately upon success   const { token, user } = response.data;   localStorage.setItem("accessToken", token);   localStorage.setItem("user", JSON.stringify(user));   return response.data; }; export const getProfile = async () => {   const response = await axiosInstance.get("/auth/profile"); // protected route   return response.data; };
77
20
No text...
76