This project is designed to provide a simple blog details page. It utilizes React for the frontend and JSON Server for a mock backend.
To install the project, run the following command in your terminal:
npm install
To start the project, run the following command in your terminal:
npm start
This will start the React application on http://localhost:3000
.
To start the mock backend using JSON Server, run the following command in a separate terminal window:
npx json-server --watch data/db.json --port 4000
This will start the JSON Server on http://localhost:4000/blogs
.
- Displays blog details on a single page
- Utilizes JSON Server for a mock backend to fetch blog data
- React
- JSON Server