Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Awesome React | 55,648 | 12 days ago | 4 | |||||||
A collection of awesome things regarding React ecosystem | ||||||||||
Gold Miner | 32,117 | 2 months ago | 1 | |||||||
🥇掘金翻译计划,可能是世界最大最好的英译中技术社区,最懂读者和译者的翻译平台: | ||||||||||
React Redux Links | 21,729 | 9 months ago | 31 | |||||||
Curated tutorial and resource links I've collected on React, Redux, ES6, and more | ||||||||||
Js Stack From Scratch | 19,396 | 7 months ago | 1 | January 19, 2017 | 48 | mit | JavaScript | |||
🛠️⚡ Step-by-step tutorial to build a modern JavaScript stack. | ||||||||||
Awesome Nextjs | 8,776 | 10 days ago | 59 | |||||||
:notebook_with_decorative_cover: :books: A curated list of awesome resources : books, videos, articles about using Next.js (A minimalistic framework for universal server-rendered React applications) | ||||||||||
Graphql Editor | 5,834 | 1 | 3 days ago | 21 | September 24, 2022 | 21 | mit | TypeScript | ||
📺 Visual Editor & GraphQL IDE. Draw GraphQL schemas using visual 🔷 nodes and explore GraphQL API with beautiful UI. Even 🐒 can do that! | ||||||||||
React Router Tutorial | 5,564 | 4 years ago | 73 | JavaScript | ||||||
Learnapollo | 5,315 | 5 years ago | 10 | mit | TypeScript | |||||
👩🏻🏫 Learn Apollo - A hands-on tutorial for Apollo GraphQL Client (created by Graphcool) | ||||||||||
React Gh Pages | 4,976 | a month ago | 23 | TypeScript | ||||||
Deploying a React App (created using create-react-app) to GitHub Pages | ||||||||||
React From Zero | 4,616 | 4 years ago | 3 | gpl-2.0 | HTML | |||||
A simple (99% ES2015 less) tutorial for React |
This repository contains the source code for the Build Yelp in React | React Hooks Tutorial provided by productioncoder.com.
Sign up for this email list so you get a vote in what we will publish next.
For updates please follow @_jgoebel on Twitter.
Please check out the videos on Youtube
The application uses real data by leveraging the Yelp Fusion API.
Bearer token
on the client side. We only did this so that this tutorial can focus on the frontend. Later on we might develop a server for this application as well if people express enough interest.This application looks pretty much the same like the original Yelp website.
It leverages the free Yelp Fusion REST API for which you need an API key.
Create App
and sign in if you haven't done so alreadyGet Started
button. If you already have an app, then you will already see the API keyAPI key
. This is a bearer token that must be put inside the header of each requestsrc/hooks/yelp-api/config.js
file and assign the BEARER_TOKEN
variable the following content
const BEARER_TOKEN = '<your-token-here>'
npm install
or yarn install
npm start
or yarn start
This project is solely intended for educational purposes and is created under fair use.
It is not intended to create any kind of Yelp competitor, but to teach advanced concepts in frontend development.
Just see it a nice educational project that will help you to improve your coding skills.