A full-stack application with a Node.js backend and a React frontend styled with Tailwind CSS. This project is designed to demonstrate the integration of a RESTful API with a modern frontend framework.
- Node.js backend serving a simple API
- React frontend with Tailwind CSS for styling
- CORS enabled for cross-origin requests
- Backend: Node.js, Express
- Frontend: React, Tailwind CSS
- Others: npm, CORS
Make sure you have the following installed:
- Node.js (v14 or higher)
- npm (comes with Node.js)
Set up the backend
```Shell
cd backend
```
Install the backend dependencies:
```Shell
npm install
```
Run the backend:
```Shell
cd backend
node server.js
```
Set up the frontend:
```Shell
cd /web
npm install
```
Run the frontend:
```Shell
cd web
npm start
```