Welcome to my repository where I store pure React projects. This repository contains three projects:
- E-Commerce Application with JSON Server
- Connect-4 Game
- Basic Calculator
Feel free to explore each project and use them as a reference for your own projects.
A full-fledged E-Commerce application built using React and powered by a JSON server. This project demonstrates how to create a dynamic online store with product listings, a shopping cart, and a simple checkout process.
- ReactJS
- JSON Server
- CSS
- Fork & Clone the repository.
- Navigate to the
E-Commerce
directory. - Install dependencies:
npm install
. - Install JSON Server
npm install -g json-server
- Navigate to db/db.json. Start the JSON server:
json-server --watch db.json
. - Start the React app:
npm start
.
A classic Connect-4 game implemented in React. This project showcases the use of React hooks and state management to create an interactive gaming experience.
- ReactJS
- CSS
- Hooks
- Fork & Clone the repository.
- Navigate to the
Connect-4
directory. - Install dependencies:
npm install
. - Start the React app:
npm start
.
A simple calculator built using React. This project is an excellent example of using React state and props for building interactive user interfaces.
- ReactJS
- CSS
- JavaScript (Calculator logic)
- Fork & Clone the repository.
- Navigate to the
basic-calculator
directory. - Install dependencies:
npm install
. - Start the React app:
npm start
.
- Node.js
- JavaScript
- CSS
- ReactJS
- React Hooks
- Props
- JSON Server
- E-Commerce
- Calculator
- Connect-4
Feel free to explore the projects and use the code as a reference for your own projects. If you have any questions or suggestions, feel free to reach out!
Happy coding!