This repository contains a minimal full-stack demo with a simple React frontend and a Node backend.
client/– static HTML page using React and Tailwind from CDNs.server/– Node HTTP server handling/submitrequests and saving orders toorders.json.
- Start the server:
cd server node server.js - Open
client/index.htmlin a browser. (Use Live Server or any static file server.)
Submitting the form will POST the order data to http://localhost:3001/submit.