gatsby-starter-minimal-blog
rick-and-morty-api-site
Our great sponsors
gatsby-starter-minimal-blog | rick-and-morty-api-site | |
---|---|---|
2 | 10 | |
985 | 48 | |
- | - | |
6.0 | 4.4 | |
25 days ago | 25 days ago | |
JavaScript | JavaScript | |
BSD Zero Clause License | - |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
gatsby-starter-minimal-blog
-
In July I had migrated to Gatsby4 - it's all slow now
I think this article is misleading. Gatsby 4 wasn't available in July yet and the article itself explains updating my starter: https://github.com/LekoArts/gatsby-starter-minimal-blog
-
Why I joined the "Blogging for Devs" course
on my perfectionism - I haven't found a theme that would match my expectations and that it would be flexible enough to edit it to my taste. I have tried to start with minimal-blog (I struggled a bit with customization) and then with novela (I wanted something more simple and performant - maybe their memoir theme would be better, but in time of writing this post, it is not yet released).
rick-and-morty-api-site
-
10 Cool Rest APIs for your Next Projects
The Rick and Morty API: This one is a very interesting API with all the Rick & Morty sitcom character data. You can also apply filter, search and pagination functionality while consuming this API. Here is a very good project for beginners to learn react using this API.
-
Remix prefetch: Fetch data ahead of time
/app/routes/index.tsx export const loader: LoaderFunction = async () => { const fetchData = await fetch('https://rickandmortyapi.com/api/character/'); const response = await fetchData.json(); const data = response.results; return data; };
- Sharing the React-Rick and Morty project again, more details below (long video)
-
How would one allow user "Updates" to a Rick and Morty type API?
I recently found the Rick and Morty API and realized it is exactly the kind of thing i need to use for a project. My issue though is that instead of having a dully fleshed out API from the start, I want to give "logged in" users the ability to update their own information in a similar API, which I can then serve out. What is the best way to let users update such a thing? The API will be called from multiple different websites that currently host their own independent DB with similar information.
-
How to render Markdown files? (I'm using React)
I'm making an API just like the Rick and Morty one, just a different show, and that guy used MDX.
-
React Challenge: Autocomplete functionality in react from scratch
import "./styles.css"; import {useState} from 'react'; import axios from 'axios'; export default function App() { // state that controlled the input value const [query, setQuery] = useState("") // state that hold API data const [suggestion, setSuggestion] = useState([]) const getLocations = () =>{ axios.get(`https://rickandmortyapi.com/api/location/?name=${query}`) //only add the data with the list of locations to the suggestion array .then(data => setSuggestion(data.data?.results)) .catch((err) => { //handle error when user types location that doesn’t exist from API if (err.response && err.response.status === 404) { setSuggestion(null) console.clear() } }) } return ( {setQuery(e.target.value); getLocations()}} list='locations' /> { query.length > 0 && // required to avoid the dropdown list to display the locations fetched before suggestion?.map((el, index) => { //make sure to only display locations that matches query if(el.name.toLowerCase().includes(query)){ return } return ''; }) } Search ); }
-
When building an API, can you build the front-end within the API itself?
I currently have a Node.js web server that serves JSON data deployed on Heroku, but I also want a front-end where it has a landing page and explains what endpoints there are (basically documentation I guess), etc. (My end goal is to have something like the Rick and Morty API)
-
Memorty - Rick and Morty memory card game
Hey. I used the Rick and Morty API to create Memorty. Hope you'll enjoy it.
-
React Live Search (Rick & Morty Edition)
useEffect(() => { const fetchData = async () => { try { const {data} = await axios.get(`https://rickandmortyapi.com/api/character/?name=${query}`) setCharacters(data.results) } catch (error) { console.error(error) } } fetchData() }, [query])
-
Does anyone use or know of a tool that makes simple and sleek documentation? Looking for something along these lines
Looks like it was made with Gatsby , github page for the site is at https://github.com/afuh/rick-and-morty-api-site Author even included a link to personal site https://axelfuhrmann.com/
What are some alternatives?
cloudflare-docs - Cloudflare’s developer docs.
gatsby-blog-mdx - A ready-to-use, customizable personal blog with minimalist design
gatsby-themes - Get high-quality and customizable Gatsby themes to quickly bootstrap your website! Choose from many professionally created and impressive designs with a wide variety of features and customization options.
mdx-deck - ♠️ React MDX-based presentation decks
rockylinux.org - The official website of the Rocky Linux project.
gatsby-starter-lumen - A constantly evolving and thoughtful architecture for creating static blogs with Gatsby.
gatsby-starter-portfolio-minimal - A Gatsby Starter to create a clean one-page portfolio with Markdown content.
react-search-bar - React Live Search Bar. Search the Rick & Morty Api. This is a project to my Youtube video.
Gatsby - Build blazing fast, modern apps and websites with React
vincentntang.com - 💻 Personal blog site using GatsbyJs, ReactJs, and NodeJs
Reactive-Resume - A one-of-a-kind resume builder that keeps your privacy in mind. Completely secure, customizable, portable, open-source and free forever. Try it out today!