vedangj044 / just-calling-random-api

React app to call various APIs. A place for new contributors to learn how to consume their APIs and contribute to open-source. Part of Hacktoberfest.
https://vedangj044.github.io/just-calling-random-api/
MIT License
25 stars 55 forks source link
hacktoberfest hacktoberfest2021 react

Just Calling Random APIs

CI/CD License Gitter

This is a react project to help you get started on your open-source journey. All you need to do is to call any public API and show us its response in your react component. It could be quotes, cat images, bitcoin - anything. Design it the way you want! Complete your Hacktoberfest challenge this year.

Table of content

Hacktoberfest

Hacktoberfest

Hacktoberfest is a global challenge organized by DigitalOcean. It encourages participation in giving back to the open-source community by completing pull requests and participating in events. You can sign up anytime between 1 and October 31. Pull requests can be submitted to this repo or any opted-in GitHub or GitLab repo. To get a T-shirt :tshirt:, you must make 4 approved pull requests (PRs). :tada:

Learn more

What's in it for you?

After contributing you would find yourself familiar and more confident with

:heavy_check_mark: Basics of GitHub workflow :metal:

:heavy_check_mark: Basics of React and Tailwind :yellow_heart:

:heavy_check_mark: How to read API documentation and consume APIs :computer:

Prerequisite

Git & Github

Here, we have mentioned the instructions to set up git. If you don't already know what Git is, check out this blog by FreeCodeCamp.

What's an API?

API stands for Application Programming Interface. Imagine what happens at a restaurant :fork_and_knife: - You order your favorite food :pizza: ( Request ), the waiter serves your order when it's ready (API Response). You are not aware of how the food is prepared. Similarly, you request data from an API, and the API returns it to you. You need not be aware of what's happening behind the scenes. Now, anybody who knows where the restaurant is, and how to communicate with the waiter can place an order. Similarly, anyone can consume an API even computer programs :robot:.

Whenever you visit just-callling-random-api you would see a new quote, I could have manually created a list of 1000 quotes and picked up anyone at random but instead, I can just consume Quotable API offered by FreeCodeCamp which saves me all the trouble of manually creating the list and offers way more quotes than I could have added.

There are amazing people out there, who have created a large number of awesome APIs - random Cat pictures :cat2: , random dogs pictures :dog:, breaking bad quotes, harry potter quotes, bitcoin prices :moneybag: , NASA space images, etc. You can find all of these and many more at Public APIs repository.

For this project, you need to pick up any API you like from this list, read about how you can use it, try calling it and understanding its response, and then consuming it your react components. We are extremely excited to see what API you choose and what you make with it! :tada:

Learn more

React

React is a JavaScript library created for building fast and interactive user interfaces for web applications. It allows developers to create web applications that can change data, without reloading the page. Above all, it's simple and easy to learn. Here's a quick Youtube Video by Fireship.

We are also going to use React Hooks - These allow developers to use state inside a functional component. More about it - Youtube Video

To start with react you need to install NPM. If you don't have it installed on your system, then you need to head to the official Node.js website to download and install Node, which also includes NPM (Node Package Manager). Select the "Recommended For Most Users" button and download the current version for your operating system.

Learn more

Tailwind

Tailwind is a utility-first CSS framework. For this project, we don't need to know about it in detail, but it would help you style your contribution if you understand the basics. To style a component, all you need to do is specify a tailwind class in its class name. Tailwind classes are very intuitive and you can find all of them in this cheat sheet. Tailwind is pretty awesome and you can know more about it here.

Local setup

Fork

This would make a copy of this repository in your account. You will see <your_username>/just-calling-random-api.

My fork

Docker setup

These instructions will cover usage information and for the docker container.

Prerequisities

In order to run this container you'll need docker installed.

Usage

# build docker image
$ docker build . -t just-calling-random-api:latest

# Run docker image
$ docker run -p 80:80 just-calling-random-api:latest

You can access the application in http://localhost

How to contribute?

Preparation

Even

Fetch upstream

Working on your contribution

import React from "react";
function MyComponent() {
  return <h2>Hi, This is my component.</h2>;
}
<ContributorInfo username= [ Your name ] profilePic= [ Your profile pic URL ] />
<ApiInfo apiUrl= [ URL of API used ] > apiName= [ Name of API used ] />

Submitting your work

PR

Wait for it to get approved and merged. Awesome, you have made your first contribution. To make a further contribution, you need to create new branches. Your next contributions could be improvements to previous work or a new API call. Certain things may not work as expected, or you may have doubts about some steps mentioned above. Need not worry, just hop on to our gitter channel and ask.

Contributors

List generated with contributors-img. [Updates every 24 hrs]