Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 1.26 KB

README.md

File metadata and controls

60 lines (40 loc) · 1.26 KB

Book Store

Welcome to Book Store!

This is a simple web application I built using the MERN Stack, showcasing my skills in both backend development and API handling. The project helped me gain a grasp of backend concepts and how to build and manage APIs effectively.

The application itself is built with:

  • React and Tailwind: for a clean and user-friendly frontend experience.
  • Node.js and Express.js: for a robust and scalable backend.
  • MongoDB: for efficient data storage and retrieval.

Key Features:

  • Create: Add new books to the store.
  • Read: See details of all books in the store.
  • Update: Change the details of existing books.
  • Delete: Remove books from the store.

Prerequisites

Node version 18.x.x

Cloning the repository

git clone https://github.com/PerHac13/BookStore-MERN-Stack.git

Install packages

npm i

Create backend/config.js file

cd backend
export const PORT = <localhost port number for backend>;

export const mongoDBURL = < mongoDB connection link >;

Setup Server

cd backend
npm run dev

Start the app

cd frontend
npm run dev