animechan

A REST API for anime quotes (by rocktimsaikia)

Animechan Alternatives

Similar projects and alternatives to animechan

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better animechan alternative or higher similarity.

animechan reviews and mentions

Posts with mentions or reviews of animechan. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-09-16.
  • 8 Best Free Anime API Resources
    1 project | dev.to | 31 Oct 2021
    API LIMIT 100 requests / hour Website https://animechan.vercel.app/
  • Using Recoil instead of Redux For State Management In React Applications
    6 projects | dev.to | 16 Sep 2021
    import { useState, useEffect } from "react"; import { Link, useParams } from "react-router-dom"; import axios from "axios"; import styled from "styled-components"; import SmallQuote from "../../components/SmallQuote/SmallQuote"; const Animepage = () => { const param = useParams(); const [quotes, setQuotes] = useState([]); const [loading, setLoading] = useState(false); useEffect(() => { if (param?.name) { setLoading(true); const fetchAnimeQuotes = async () => { try { const res = await axios.get( `https://animechan.vercel.app/api/quotes/anime?title=${param?.name}` ); setQuotes(res?.data); setLoading(false); } catch (error) { console.log(error); setLoading(false); } }; fetchAnimeQuotes(); } }, [param]); return (

    Quotes from {param?.name}

    Go back
    {loading ? (

    Loading...

    ) : quotes?.length ? ( quotes?.map((quote, index) => (
    )) ) : (

    No Quote found 😞

    )}
    ); }; const StyledAnimePage = styled.div` max-width: 80%; margin: 2rem auto; position: relative; & > a { position: absolute; top: 1rem; text-decoration: none; } & > h2 { font-weight: 400; letter-spacing: 3px; text-align: center; margin-bottom: 2rem; } & > .grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: max-content; & .anime { margin: 1rem; height: max-content; } & > p { margin: 2rem 0 4rem; font-size: 1.3rem; text-align: center; } } `; export default Animepage;
  • cowsay but it's random anime quote
    1 project | /r/linux | 8 May 2021
    it is just an api that returns rand quote https://github.com/rocktimsaikia/anime-chan
  • A note from our sponsor - SurveyJS
    surveyjs.io | 27 Apr 2024
    With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js. Learn more →

Stats

Basic animechan repo stats
3
1,242
8.1
18 days ago

rocktimsaikia/animechan is an open source project licensed under Mozilla Public License 2.0 which is an OSI approved license.

The primary programming language of animechan is TypeScript.


Sponsored
Power Real-Time Data Analytics at Scale
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.
www.influxdata.com