The forum is built for sharing people's daylife issues and getting solution from other's .... The back end is delivered from laravel in this case.
- Account Authentication
- Hashed Password
- Password Recovery with Mail
- Post Like/Dislike
- Comment Like/Dislike
- Reporting Posts
- Viewing Individual User Profile and Their Posts
- Deleting Comments and Posts
- Image Converting in Database
- Inside Index.js file you will find two line code ->
- axios.defaults.baseURL and headers authorizaion to hand rest api link ...
- My backend was in localhost:8000 so i used that you need to change considering your port and url ...
- Also another thing is our all time focus was authorization authentication... And features of forum . So, some small change was not added like converting Datetime to 2digit format using to.localeString("en-US",{
year : "numeric",
month: "2-digit",
day : "2-digit",
hour: "2-digit",
minute : "2-digit",
hour12: true
})
- I might add this and other new features upcoming day if you request and inspire me ....
Clone the project
git clone https://github.com/SaminKirigaya/Forum_FrontEnd_With_React_Js__LARAVEL-OPTIMIZED-.git
Go to the project directory
cd my-project //The folder where everything you keep
Install dependencies
npm install
Start the server
npm run start