zachd1234 /
todo-rest-java
π§Ύ Full-stack to-do list app with a Java REST API backend and HTML/JavaScript frontend. Built for CRUD operations via HTTP.
30/100 healthLoading repository dataβ¦
H0NEYP0T-466 / repository
π§Ύ A Full-Stack (MERN) User Data Form Built with βοΈ React, π Node.js, and π MongoDB. β¨ Allows users to input, store, and manage personal data (Update & Delete) and seamless backend integration π. π¨ Designed with a clean UI, π secure API handling, and π§± modular code structure.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
A modern, full-stack web application built with the MERN (MongoDB, Express.js, React.js, Node.js) stack that enables users to submit enquiry forms and provides comprehensive data management capabilities. This project demonstrates professional-grade CRUD operations, state management with React hooks, RESTful API communication, and seamless MongoDB integration.
Before running this project, ensure you have the following installed:
Clone the repository
git clone https://github.com/H0NEYP0T-466/fullStackProject.git
cd fullStackProject
Install frontend dependencies
npm install
Install backend dependencies
cd src/Server
npm install
cd ../..
Setup MongoDB
src/Server/index.jsStart the backend server
cd src/Server
node index.js
Start the frontend development server
Selected from shared topics, language and repository descriptionβnot editorial ratings.
zachd1234 /
π§Ύ Full-stack to-do list app with a Java REST API backend and HTML/JavaScript frontend. Built for CRUD operations via HTTP.
30/100 health# In a new terminal, from the project root
npm run dev
Access the application
http://localhost:5173 (or the port shown in terminal)http://localhost:8000# Get all enquiries
GET http://localhost:8000/enquiries
# Create new enquiry
POST http://localhost:8000/insert
# Update enquiry
POST http://localhost:8000/update
# Delete enquiry
POST http://localhost:8000/delete
{
"name": "John Doe",
"email": "john.doe@example.com",
"phoneNumber": "+1234567890",
"message": "This is a sample enquiry message"
}
fullStackProject/
β
βββ π README.md # Project documentation
βββ π package.json # Frontend dependencies & scripts
βββ π vite.config.js # Vite configuration
βββ π eslint.config.js # ESLint configuration
βββ π index.html # Main HTML template
β
βββ π src/ # Source code directory
β βββ π App.jsx # Main React component
β βββ π App.css # App-specific styles
β βββ π main.jsx # React entry point
β βββ π index.css # Global styles (TailwindCSS)
β β
β βββ π components/ # Reusable React components
β β βββ π Form.jsx # Enquiry form & admin interface
β β
β βββ π assets/ # Static assets
β β βββ π react.svg # React logo
β β
β βββ π Server/ # Backend application
β βββ π index.js # Express server entry point
β βββ π package.json # Backend dependencies
β β
β βββ π controller/ # Business logic
β β βββ π web/
β β βββ π controller.js # CRUD operations
β β
β βββ π model/ # Database models
β β βββ π enquiryModel.js # Mongoose schema
β β
β βββ π routes/ # API routes
β βββ π web/
β βββ π enquiryRoutes.js # Route definitions
β
βββ π public/ # Public assets
β βββ π vite.svg # Vite logo
β
βββ π dist/ # Build output (generated)
βββ π index.html
βββ π assets/
We welcome contributions from the community! Here's how you can help:
git checkout -b feature/your-feature-namegit commit -m 'Add some feature'git push origin feature/your-feature-nameThis project is licensed under the MIT License - see the details below:
MIT License
Copyright (c) 2025 H0NEYP0T-466
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.