close icon
daily.dev platform

Discover more from daily.dev

Personalized news feed, dev communities and search, much better than what’s out there. Maybe ;)

Start reading - Free forever
Continue reading >

5 React-Based Projects Every Beginner Must Try

5 React-Based Projects Every Beginner Must Try
Author
Suraj Vishwakarma
Related tags on daily.dev
toc
Table of contents
arrow-down

🎯

Introduction

React is one of the popular JavaScript frameworks available in the community. React is very powerful, and you can develop a variety of web- apps using react. So today, I am going to list 5 projects that you can make using the react framework.

1. COVID-19 Info App

Alt Text

You can create a webpage displaying current information and stats of COVID-19. We can use an API to fetch data about COVID-19. You can show that information on the page as you want. You can API from disease.sh to fetch the data.

What will you learn?

  • API Management
  • Props
  • State Management
  • Flexbox For Containers

2. Weather App

Alt Text

We can create our own weather to know the weather. We can have an input box to search for different cities too. You can create an input box to get the city's name and display the weather information on the web page. OpenWeather is one of my favorite API providing weather information. API comes with icon code. You can use this code to display an icon according to the weather.

What will you learn?

  • API Management
  • Props
  • State Management
  • Reusable Component

3. Recipe App

Alt Text

Yes, a recipe app to help you and others who want to cook tasty food. In this app, we can display a recipe for food according to searched input. We can also display some featured recipes too. Edamam provides an API for recipe apps. It is one of the best available recipe API.

What will you learn?

  • API Management
  • Props
  • State Management
  • Reusable Component

4. Calculator App

Alt Text

You can develop a basic to the more advanced scientific calculator using react. Designing a calculator can help you to understand the language. It will also test your mathematics knowledge too. But it's quite fun to design a calculator and give features according to your need.

What will you learn?

  • Props
  • State Management
  • Reusable Component

5. Todo App

Alt Text

You can make a todo app with an input box to add a new todo item to the list. You can have an input box for entering a new task in the todo-app. You can have a database to store that information. You can use firebase to store data and get a real-time update. You can have the animation for the completed and uncompleted task. We can also give points to the user according to the task completed.

What will you learn?

  • Firebase Database Management
  • Props
  • State Management
  • Reusable Component
  • Realtime Database Update

Why not level up your reading with

Stay up-to-date with the latest developer news every time you open a new tab.

Read more