User Authentication with Strapi and React

This page summarizes the projects mentioned and recommended in the original post on dev.to

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • React_Strapi_Auth_FrontEnd

    Demo Application for Authentication with Strapi

  • Note: All of the CSS is available in the src/index.css file here.

  • React_Strapi_Auth_BackEnd

    Demo Application for Authentication with Strapi

  • Strapi Backend GitHub Repository

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
  • murder

    Large scale server deploys using BitTorrent and the BitTornado library (by ervinb)

  • # SocialCards/SocialCards.jsx import { Button, Card, Col, Image, message, Row, Space, Spin, Typography, } from "antd"; import React, { useEffect, useState } from "react"; import { AiFillTwitterCircle, AiFillLinkedin, AiFillGithub, } from "react-icons/ai"; import { CgWebsite } from "react-icons/cg"; import { SiGmail } from "react-icons/si"; import { API, AVATAR_API } from "../../constant"; const SocialCards = () => { const [profiles, setProfiles] = useState([]); const [isLoading, setIsLoading] = useState(false); const fetchProfiles = async () => { setIsLoading(true); try { const response = await fetch(`${API}/users`); const data = await response.json(); setProfiles(data ?? []); } catch (error) { console.error(error); message.error("Error while fetching profiles!"); } finally { setIsLoading(false); } }; useEffect(() => { fetchProfiles(); }, []); if (isLoading) { return ; } return ( {profiles.map((profile, index) => ( {profile.username} {profile.about} {profile.twitter_username && ( )} {profile.linkedin_username && ( )} {profile.github_username && ( )} {profile.website_url && ( )} {profile.email && ( )} ))} ); }; export default SocialCards;

  • React

    The library for web and native user interfaces.

  • React has large community support and it's used by giants like Facebook, Tesla, etc. React provides some outstanding features like JSX (Javascript syntactic extension), Virtual DOM (Document Object Model), etc. Click here to learn more.

  • Puts Debuggerer

    Ruby library for improved puts debugging, automatically displaying bonus useful information such as source line number and source code.

  • # SocialCards/SocialCards.jsx import { Button, Card, Col, Image, message, Row, Space, Spin, Typography, } from "antd"; import React, { useEffect, useState } from "react"; import { AiFillTwitterCircle, AiFillLinkedin, AiFillGithub, } from "react-icons/ai"; import { CgWebsite } from "react-icons/cg"; import { SiGmail } from "react-icons/si"; import { API, AVATAR_API } from "../../constant"; const SocialCards = () => { const [profiles, setProfiles] = useState([]); const [isLoading, setIsLoading] = useState(false); const fetchProfiles = async () => { setIsLoading(true); try { const response = await fetch(`${API}/users`); const data = await response.json(); setProfiles(data ?? []); } catch (error) { console.error(error); message.error("Error while fetching profiles!"); } finally { setIsLoading(false); } }; useEffect(() => { fetchProfiles(); }, []); if (isLoading) { return ; } return ( {profiles.map((profile, index) => ( {profile.username} {profile.about} {profile.twitter_username && ( )} {profile.linkedin_username && ( )} {profile.github_username && ( )} {profile.website_url && ( )} {profile.email && ( )} ))} ); }; export default SocialCards;

  • Visual Studio Code

    Visual Studio Code

  • A code editor like VSCode

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts