This project is a simple blog built using React, a popular JavaScript library for building user interfaces. It was created as a practice project to learn more about React and its capabilities.
JSON Server was created using this package.
- Create new blog posts
- View a list of all blog posts
- View the details of a specific blog post
- Delete existing blog posts
To get started with this project, follow these steps:
-
Fork this repository to your GitHub account.
-
Clone this repository to your local machine:
git clone https://github.com/<your-username>/react-blog.git
- Navigate to the project directory:
cd react-blog
- Install the required dependencies:
npm install
- Start the development server:
npm start
-
Open http://localhost:3000 to view it in the browser.
-
Start the JSON Server:
npm run server
- Open http://localhost:8000 to view the JSON Server in the browser.
This project is licensed under the MIT License. See the LICENSE file for more details.
- Complete React Tutorial by The Net Ninja - This tutorial provided step-by-step instructions on how to build a simple blog using React.