https://github.com/harshavardh8n/aureal-node.js-assignment
A basic CRUD operations assignment from Aurreal on Internshala, designed to practice fundamental backend development skills. The project implements standard Create, Read, Update, and Delete functionalities.
https://github.com/harshavardh8n/aureal-node.js-assignment
express-js javascript mongodb nodejs
Last synced: about 1 month ago
JSON representation
A basic CRUD operations assignment from Aurreal on Internshala, designed to practice fundamental backend development skills. The project implements standard Create, Read, Update, and Delete functionalities.
- Host: GitHub
- URL: https://github.com/harshavardh8n/aureal-node.js-assignment
- Owner: harshavardh8n
- Created: 2024-09-13T08:07:23.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-13T14:23:07.000Z (about 1 year ago)
- Last Synced: 2025-07-04T03:04:48.260Z (3 months ago)
- Topics: express-js, javascript, mongodb, nodejs
- Language: JavaScript
- Homepage:
- Size: 11.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Aurreal CRUD Assignment
Overview
This project is a basic CRUD operations assignment received from Aurreal on Internshala. It demonstrates fundamental backend development skills by implementing Create, Read, Update, and Delete functionalities.Features
Create: Add new records to the database.
Read: Retrieve and display existing records.
Update: Modify existing records.
Delete: Remove records from the database.
Technologies
Framework: [Specify if using any specific framework]
Database: [Specify if using any specific database]
Language: [Specify programming language used, e.g., JavaScript, TypeScript]
Setup
Clone the Repositorybash
Copy code
git clone https://github.com/your-username/aurreal-crud-assignment.git
cd aurreal-crud-assignment
Install Dependenciesbash
Copy code
npm install
Configure Environment VariablesCreate a .env file in the root directory and add any required environment variables.
Run the Application
bash
Copy code
npm start
Usage
Create: Send a POST request to /api/resource with the necessary data.
Read: Send a GET request to /api/resource to retrieve records.
Update: Send a PUT request to /api/resource/:id with the updated data.
Delete: Send a DELETE request to /api/resource/:id to remove a record.
Contributing
Feel free to open issues or submit pull requests if you have any suggestions or improvements.License
This project is licensed under the MIT License.