JavaScript graphql-api

Open-source JavaScript projects categorized as graphql-api

Top 6 JavaScript graphql-api Projects

  • parse-server

    Parse Server for Node.js / Express

  • Project mention: The 2024 Web Hosting Report | dev.to | 2024-02-20

    Backend as a Service (BaaS) goes back to early 2010’s with companies like Parse and Firebase. These products integrated everything a backend provides to a webapp in a single, integrated package that makes it easier to get started and enables you to offload some of the devops maintenance work to someone else.

  • headless-wp-starter

    🔪 WordPress + React Starter Kit: Spin up a WordPress-powered React app in one step

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. 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.

    SurveyJS logo
  • rick-and-morty-api

    The Rick and Morty API

  • Project mention: Implementing Infinite scroll in React apps | dev.to | 2024-04-26

    import { useEffect, useState } from "react"; import axios from "axios"; import "./App.css"; import InfiniteScroll from "react-infinite-scroll-component"; import CharacterCard from "./components/Card"; function App() { const [characters, setCharacters] = useState([]); const [page, setPage] = useState(1); const [hasMore, setHasMore] = useState(true); const [totalPages, setTotalPages] = useState(1); const fetchData = async () => { if (page == totalPages + 1) { setHasMore(false); return; } // <-----------------------------------------------> // waiting for 1 second before fetching data to show loading spinner, you can skip this await new Promise((resolve) => setTimeout(resolve, 1000)); // <-----------------------------------------------> const res = await axios.get( `https://rickandmortyapi.com/api/character?page=${page}` ); setCharacters((prevPosts) => [...prevPosts, ...res.data.results]); setTotalPages(res.data.info.pages); setPage((prevPage) => prevPage + 1); }; useEffect(() => { fetchData(); }, []); return (

    Rick and Morty characters!h1> Loading...h4>} endMessage={

    Yay! You have seen it allb> p> } > {/* Map over characters array and return JSX */} {characters.map((character, index) => ( ))} InfiniteScroll> div> ); } export default App;

  • IMPORTJSONAPI

    Use JSONPath to selectively extract data from any JSON or GraphQL API directly into Google Sheets.

  • Project mention: Hello, I am trying to implement a live tracker from a website on some prices, does anyone know how? | /r/googlesheets | 2023-06-06

    You can access the API with IMPORTJSONAPI or a custom script.

  • graphql-sequelize-generator

    A Graphql API generator based on Sequelize.

  • webadvisor-api

    Lightweight and simple GraphQL API for UoG, UW, and WLU.

NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

JavaScript graphql-api related posts

  • It's not much but it's mine. Rick and Morty info app. Feedback/code review welcome!

    1 project | /r/webdev | 17 Jun 2023
  • Show /r/reactjs - Badgeth, a sci-fi dApp built with React + Typescript + Next.js + Arwes

    2 projects | /r/reactjs | 18 Aug 2021

Index

What are some of the best open-source graphql-api projects in JavaScript? This list will help you:

Project Stars
1 parse-server 20,644
2 headless-wp-starter 4,442
3 rick-and-morty-api 958
4 IMPORTJSONAPI 235
5 graphql-sequelize-generator 22
6 webadvisor-api 4

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com