Test change 1
A minimal full-stack sample with a Next.js frontend and an ASP.NET Core (.NET 10) backend.
- .NET 10 SDK
- Node.js (v18+)
cd backend
dotnet runThe API runs at http://localhost:5100.
In a separate terminal:
cd frontend
npm install
npm run devOpen http://localhost:3000, click Call Backend, and the message from the API will appear on the page.
| Method | Endpoint | Response |
|---|---|---|
| GET | /api/message |
Plain text greeting from backend |