Heim >Web-Frontend >js-Tutorial >Erstellen einer einfachen Full-Stack-Anwendung mit React und Node.js
In meinen vorherigen Blogs habe ich React und Node.js vorgestellt. Jetzt wollen wir sie zusammenbringen, um etwas noch Spannenderes zu schaffen: eine einfache Full-Stack-Anwendung! Man könnte meinen, Full-Stack-Apps seien nur für größere Projekte mit mehreren Datenbanken und komplexen Strukturen geeignet. Während dies konzeptionell zutrifft, können Full-Stack-Anwendungen in der Praxis so einfach sein wie ein kleines Frontend mit einem einfachen Backend. Sehen wir uns also an, wie einfach es ist, mit React und Node.js eine Full-Stack-App zu erstellen.
Beginnen wir mit der Erstellung des Backends. Wir verwenden Express als unseren Server, um eine einfache JSON-Nachrichtenantwort an das Frontend zu senden.
npm install express
const express = require('express'); const app = express(); const PORT = 3000; app.get('/greet', (req, res) => { res.status(200).json({ message: "Zee here..." }); }); app.listen(PORT, () => console.log(`Server is running at http://localhost:${PORT}`));
Erklärung:
Jetzt erstellen wir das Frontend mit React. Wir verwenden zwei Hooks: useState und useEffect, um Daten vom Backend abzurufen.
npx create-react-app my-fullstack-app cd my-fullstack-app
import { useState, useEffect } from 'react'; export function App() { const [response, setResponse] = useState(null); useEffect(() => { const controller = new AbortController(); // This is used to abort the fetch request if the component is unmounted const fetchData = async () => { try { const response = await fetch('http://localhost:3000/greet', { signal: controller.signal, }); if (!response.ok) throw new Error("Couldn't fetch data"); const data = await response.json(); setResponse(data.message); // Corrected the response property here } catch (error) { console.error(error); } }; fetchData(); // Clean up function to abort the fetch request if needed return () => controller.abort(); }, []); return ( <div> {response ? <p>{response}</p> : <p>Loading...</p>} </div> ); }
Erklärung:
npm install express
const express = require('express'); const app = express(); const PORT = 3000; app.get('/greet', (req, res) => { res.status(200).json({ message: "Zee here..." }); }); app.listen(PORT, () => console.log(`Server is running at http://localhost:${PORT}`));
Öffnen Sie nun Ihren Browser und gehen Sie zu http://localhost:3000. Sie sollten eine einfache Nachricht sehen, die vom Backend abgerufen wurde und „Zee here...“ anzeigt.
Und das ist es! Sie haben gerade eine einfache Full-Stack-Anwendung mit React und Express erstellt. Das ist ein toller Anfang, und auf dieser Grundlage können Sie komplexere Anwendungen erweitern und erstellen. Viel Spaß beim Codieren!
Das obige ist der detaillierte Inhalt vonErstellen einer einfachen Full-Stack-Anwendung mit React und Node.js. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!