rick-and-morty-api-site

The Rick and Morty API site (by afuh)

Rick-and-morty-api-site Alternatives

Similar projects and alternatives to rick-and-morty-api-site

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better rick-and-morty-api-site alternative or higher similarity.

rick-and-morty-api-site reviews and mentions

Posts with mentions or reviews of rick-and-morty-api-site. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-11.
  • Does anybody know the API documentation tool used to build the Rick and Morty API?
    4 projects | /r/webdev | 11 Apr 2023
    Specifically looks like hand-rolled docs using Gatsby https://github.com/afuh/rick-and-morty-api-site/tree/fd7a1c1a32e42ac6be7c6ffaeea8d1b29c05d2da/src
    2 projects | /r/AskProgramming | 11 Apr 2023
  • Como usar Fetch API para buscar dados de uma API
    2 projects | dev.to | 14 Feb 2023
  • Decidi aprender programação sozinho
    1 project | /r/brasil | 28 Jan 2023
  • Should I use ServerSideProps or StaticProps in this case?
    2 projects | /r/nextjs | 10 Jan 2023
    The external API that I'm using is the Rick and Morty API. I know that there is a freeCodeCamp tutorial using this same API and teaching Next, but I want to dive a little bit deeper and understand some topics that the article does not cover.
  • Introduction to React Suspense
    5 projects | dev.to | 27 Dec 2022
    import React, { useEffect, useState, useTransition } from 'react'; import { Link } from 'react-router-dom'; import Loader from '../Components/Loader'; import { Pagination } from '../Components/Pagination'; function Home() { const [data, setData] = useState({}); const [isLoading, startTransition] = useTransition(); const fetchCharacters = async (page?: number) => { const response = await fetch( `https://rickandmortyapi.com/api/character?page=${page}` ); const parsedData = await response.json(); startTransition(() => { if (response.ok) setData(parsedData); }); }; useEffect(() => { fetchCharacters(1); }, []); const { results, info } = data; const onPageChange = (pageNumber: number) => { fetchCharacters(pageNumber); window.scrollTo({ top: 0, behavior: 'smooth', }); }; return ( Rick And Morty {!isLoading ? ( <> {results?.map((datas: any) => { const { id, name, species, gender, origin, location, image, episode, } = datas; return ( {name ? Name: : null} {species ? Species: : null} {gender ? Gender: : null} {origin.name ? Origin: : null} {location.name ? Location: : null} {name ? {name} : null} {species ? {species} : null} {gender ? {gender} : null} {origin.name ? {origin.name} : null} {location.name ? {location.name} : null} ); })} {info ? ( ) : null} ) : ( )} ); } export default Home;
  • Create a custom debounce Hook in React
    2 projects | dev.to | 23 Nov 2022
    export async function getCharacter(value) { const data = await fetch( `https://rickandmortyapi.com/api/character/?name=${value}` ) const response = await data.json() if (response === undefined || response.error) { throw new Error(`HTTP error! status: ${response.error}`); } return response }
  • Senior developers, how did you start and how to improve?
    2 projects | /r/learnprogramming | 9 Nov 2022
    There are so many APIs you can use to write a client on: https://rickandmortyapi.com/ as an example. If you want to stick to using a cli app you can try use a TUI library to make it more slick. For images you can convert them to ascii art
  • Is there the Sopranos API?
    1 project | /r/thesopranos | 2 Nov 2022
    I wanted to check if there is something similar to this . Just to practice react query and maybe expand it a bit. Not to use it for portfolio or try to get a job with it. While reading about react query I thought it would be good to practice it with sopranos api
  • Nuxt 3, Apollo GraphQL, TailwindCSS Crash Course
    4 projects | dev.to | 16 Oct 2022
    Rick and Morty API -> https://rickandmortyapi.com/
  • A note from our sponsor - InfluxDB
    www.influxdata.com | 26 Apr 2024
    Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality. Learn more →

Stats

Basic rick-and-morty-api-site repo stats
26
61
0.0
8 months ago

Sponsored
The modern identity platform for B2B SaaS
The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.
workos.com