Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Query | 33,745 | 10 hours ago | 48 | mit | TypeScript | |||||
🤖 Powerful asynchronous state management, server-state utilities and data fetching for the web. TS/JS, React Query, Solid Query, Svelte Query and Vue Query. | ||||||||||
React Admin | 21,713 | 248 | 171 | 10 hours ago | 233 | September 23, 2022 | 121 | mit | TypeScript | |
A frontend Framework for building B2B applications running in the browser on top of REST/GraphQL APIs, using ES6, React and Material Design | ||||||||||
Api Platform | 7,838 | 5 days ago | 37 | February 12, 2018 | 550 | mit | TypeScript | |||
Create REST and GraphQL APIs, scaffold Jamstack webapps, stream changes in real-time. | ||||||||||
Headless Wp Starter | 4,338 | 13 days ago | 52 | gpl-2.0 | JavaScript | |||||
🔪 WordPress + React Starter Kit: Spin up a WordPress-powered React app in one step | ||||||||||
React Refetch | 3,433 | 157 | 22 | 4 months ago | 82 | January 20, 2020 | 48 | other | JavaScript | |
A simple, declarative, and composable way to fetch data for React components | ||||||||||
Restful React | 1,878 | 4 | 16 | 3 months ago | 194 | December 27, 2021 | 50 | mit | TypeScript | |
A consistent, declarative way of interacting with RESTful backends, featuring code-generation from Swagger and OpenAPI specs 🔥 | ||||||||||
Nuclearmail | 808 | 4 years ago | 3 | mit | JavaScript | |||||
NuclearMail is an experiment of writing a webmail client using React and the Flux architecture. It runs completely in the browser and uses the GMail REST API. | ||||||||||
Hyper Fetch | 776 | 20 days ago | 55 | September 22, 2022 | 1 | apache-2.0 | TypeScript | |||
⚡ Fetching made easy! Take advantage of response caching, request deduplication, authentication features, great progress tracking, smart retries, architecture guidelines and more. Gain full control over requesting in your applications! | ||||||||||
Tut React And Spring Data Rest | 744 | 2 years ago | 12 | JavaScript | ||||||
React.js and Spring Data REST :: A tutorial based on the 5-part blog series by Greg Turnquist | ||||||||||
Atsea Sample Shop App | 590 | a year ago | apache-2.0 | Java | ||||||
A sample app that uses a Java Spring Boot backend connected to a database to display a fictitious art shop with a React front-end. |
API Platform Admin is a tool to automatically create a beautiful (Material Design) and fully-featured administration interface for any API supporting the Hydra Core Vocabulary or exposing an OpenAPI documentation, including but not limited to all APIs created using the API Platform framework.
The generated administration is a 100% standalone Single-Page-Application with no coupling to the server part, according to the API-first paradigm.
API Platform Admin parses Hydra or OpenAPI documentations, then uses the awesome React-admin library (and React) to expose a nice, responsive, management interface (Create-Retrieve-Update-Delete) for all available resources.
You can also customize all screens by using React-admin components and even raw JavaScript/React code.
Click here to test API Platform Admin in live.
The source code of the demo is available in this repository.
yarn add @api-platform/admin
import React from 'react';
import ReactDOM from 'react-dom';
import { HydraAdmin, OpenApiAdmin } from '@api-platform/admin';
// To use Hydra:
const Admin = () => <HydraAdmin entrypoint="https://demo.api-platform.com" />; // Replace with your own API entrypoint
// To use OpenAPI (with a very simple REST data provider):
const Admin = () => <OpenApiAdmin
docEntrypoint="https://demo.api-platform.com/docs.json" // Replace with your own OpenAPI documentation entrypoint
entrypoint="https://demo.api-platform.com" // Replace with your own API entrypoint
/>;
ReactDOM.render(<Admin />, document.getElementById('root'));
Or alternatively:
import React from 'react';
import ReactDOM from 'react-dom';
import {
AdminGuesser,
hydraDataProvider,
hydraSchemaAnalyzer,
openApiDataProvider,
openApiSchemaAnalyzer
} from '@api-platform/admin';
import simpleRestProvider from 'ra-data-simple-rest';
// Use your custom data provider or resource schema analyzer
// Hydra:
const dataProvider = hydraDataProvider({ entrypoint: 'https://demo.api-platform.com' });
const schemaAnalyzer = hydraSchemaAnalyzer();
// OpenAPI:
const dataProvider = openApiDataProvider({
// Use any data provider you like
dataProvider: simpleRestProvider('https://demo.api-platform.com'),
entrypoint: 'https://demo.api-platform.com',
docEntrypoint: 'https://demo.api-platform.com/docs.json',
});
const schemaAnalyzer = openApiSchemaAnalyzer();
const Admin = () => (
<AdminGuesser
dataProvider={dataProvider}
schemaAnalyzer={schemaAnalyzer}
/>
);
ReactDOM.render(<Admin />, document.getElementById('root'));
http://schema.org/email
)The documentation of API Platform Admin can be browsed on the official website.
Check also the documentation of React-admin on their official website.
Created by Kvin Dunglas. Sponsored by Les-Tilleuls.coop. Commercial support available upon request.