Building the Client Side (Front-end)

FullStack
2 out of 7 lessons30 mins4.5 Rating

About Lesson

This lesson in this project is designed to provide a step-by-step guide to mastering key concepts and building practical skills.


Installing Dependencies

Open the terminal and paste the following snippet

npm install @reduxjs/toolkit axios dotenv firebase lucide-react react react-dom react-icons react-redux react-router-dom react-stripe-checkout react-toastify redux-persist
<aside> šŸ’” Note : You need to install `TailwindCSS` with Vite before starting this project. Here is the steps to install Tailwind in your app. </aside>
npm install -D tailwindcss postcss autoprefixer npx tailwindcss init -p

In your index.css file copy paste these 3 lines of code

@tailwind base; @tailwind components; @tailwind utilities;

Now we will re run the server to make it effective using npm run dev

Fetching data from Fake Store API

Now once we have our dependencies installed and environment ready we will setup the API request for our product data. Inside the api directory create an Api.jsx file and paste the following code, this will fetch all the items from Fakestore API.

import axios from "axios"; const productsData = async () => { const products = await axios.get( "https://fakestoreapiserver.reactbd.com/products" ); return products; }; export default productsData;

Author

Aryan Singh

Aryan Singh

SDE @ Google

4
šŸš€ Exciting Course Updates!
šŸŽÆ

New PROJECTS added in MERN & Next.js to boost your portfolio

šŸ“š

10+ Comprehensive GUIDES added across all courses

šŸ¤–

100+ new videos on Full Stack, DSA, AI development

šŸ“

Fresh DSA revision series to strengthen your basics

šŸ”„

Interview preparation material added

Access All Courses