Skip to content

rk28284/Next-Gen-CRM-System

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Next Gen CMS - Full CRUD Operations

Project Overview

This Next Gen CMS is a modern platform supporting full Create, Read, Update, and Delete (CRUD) operations.

Features Include

  • Create new content and manage data easily through the intuitive React front-end.
  • Read and display all stored content dynamically using React components.
  • Update existing content with real-time form inputs and API integration.
  • Delete unwanted content securely with confirmation prompts.

Technology Stack

  • Frontend: React, TailwindCSS, JavaScript, HTML, CSS
  • Backend: Node.js, Express, Mongoose (MongoDB)

CRUD API Endpoints

  • POST /api/lead - Create new content
  • GET /api/lead - Read/List all content
  • GET /api/lead/:id - Read single content by ID
  • PUT /api/lead/:id - Update content by ID
  • DELETE /api/lead/:id - Delete content by ID

How CRUD Works

  1. Create: Users submit forms that send POST requests, adding new data to the database.
  2. Read: Data is fetched via GET requests and rendered in frontend components dynamically.
  3. Update: Edited content is sent with PUT requests to modify existing database records.
  4. Delete: DELETE requests remove records after user confirmation.

Summary

This CMS project fully supports CRUD operations both on the UI and API levels, ensuring seamless management of website content.

© 2025 Next Gen CMS Project

Releases

No releases published

Packages

 
 
 

Contributors