Skip to content

harrishragavan/harrishragavan-E-Book-Library-Using-MERN-Stack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 

Repository files navigation

harrishragavan-E-Book-Library-Using-MERN-Stack

E-Book Library Using MERN Stack: The E-Book Library is a full-stack web application built using the MERN stack (MongoDB, Express.js, React.js, and Node.js). It provides users with a digital platform to browse, read, and manage e-books.

Key Features:

✅ User Authentication – Secure login/signup using JWT authentication.

✅ Read Online – Integrated PDF viewer for reading books without downloads.

✅ Admin Panel – Admins can manage users and book collections.

✅ Responsive UI – Mobile-friendly design using React & Tailwind CSS. LOGIN SAMPLE IMG1 LOGIN PAGE..... image MAIN INTERFACE.....

// Routes app.get('/users', async (req, res) => { const users = await User.find(); res.json(users); });

app.post('/users', async (req, res) => { const user = new User(req.body); await user.save(); res.json(user); });

About

E-Book Library Using MERN Stack The E-Book Library is a full-stack web application built using the MERN stack (MongoDB, Express.js, React.js, and Node.js). It provides users with a digital platform to browse, read, and manage e-books.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors