https://github.com/milindsangale/sigma-6.0-backend
This is Repository contain Node.js, SQL, REST, MongoDB, REST-API.
https://github.com/milindsangale/sigma-6.0-backend
expressjs mongodb node nodejs rest rest-api sql
Last synced: 2 months ago
JSON representation
This is Repository contain Node.js, SQL, REST, MongoDB, REST-API.
- Host: GitHub
- URL: https://github.com/milindsangale/sigma-6.0-backend
- Owner: Milindsangale
- Created: 2025-03-21T17:31:37.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-22T20:00:48.000Z (about 1 year ago)
- Last Synced: 2025-10-25T16:46:32.653Z (8 months ago)
- Topics: expressjs, mongodb, node, nodejs, rest, rest-api, sql
- Language: JavaScript
- Homepage:
- Size: 2.02 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🔧 Node.js
- Node.js is a JavaScript runtime built on Chrome's V8 engine. It allows developers to run JavaScript on the server side to build scalable and high-performance applications. In this repository, Node.js serves as the backend runtime environment for handling HTTP requests, business logic, and integration with databases.
# 🗃️ SQL
- SQL (Structured Query Language) is used for managing and querying relational databases. The repository includes examples that demonstrate how to perform CRUD operations (Create, Read, Update, Delete) using SQL with databases like MySQL or PostgreSQL.
# 🌐 REST (Representational State Transfer)
- REST is an architectural style for designing networked applications. The repository follows RESTful principles for structuring APIs, using standard HTTP methods like GET, POST, PUT, and DELETE. This ensures a clear, scalable, and maintainable backend.
# 🍃 MongoDB
- MongoDB is a NoSQL database known for its flexibility and scalability. It stores data in a JSON-like format called BSON. In this repository, MongoDB is used to handle unstructured data and integrate seamlessly with Node.js using Mongoose or the native MongoDB driver.
# 📡 REST API
- A REST API (Application Programming Interface) allows different software systems to communicate over the web using HTTP. This repository demonstrates how to build REST APIs using Node.js and Express, with both SQL and NoSQL (MongoDB) databases as the data sources.