mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-04-23 12:48:00 +08:00
26 lines
1.1 KiB
Markdown
26 lines
1.1 KiB
Markdown
---
|
|
id: integrating-with-an-api-backend
|
|
title: Integrating with an API Backend
|
|
sidebar_label: Integrating with an API
|
|
---
|
|
|
|
These tutorials will help you to integrate your app with an API backend running on another port,
|
|
using `fetch()` to access it.
|
|
|
|
## Node
|
|
|
|
Check out [this tutorial](https://www.fullstackreact.com/articles/using-create-react-app-with-a-server/).
|
|
You can find the companion GitHub repository [here](https://github.com/fullstackreact/food-lookup-demo).
|
|
|
|
## Ruby on Rails
|
|
|
|
Check out [this tutorial](https://www.fullstackreact.com/articles/how-to-get-create-react-app-to-work-with-your-rails-api/).
|
|
You can find the companion GitHub repository [here](https://github.com/fullstackreact/food-lookup-demo-rails).
|
|
|
|
## API Platform (PHP and Symfony)
|
|
|
|
[API Platform](https://api-platform.com) is a framework designed to build API-driven projects.
|
|
It allows creating hypermedia and GraphQL APIs in minutes.
|
|
It is shipped with an official Progressive Web App generator as well as a dynamic administration interface, both built for Create React App.
|
|
Check out [this tutorial](https://api-platform.com/docs/distribution).
|