https://github.com/bipul-hossein/postgresql_crud_operation
A backend-only implementation demonstrating basic CRUD operations using PostgreSQL.
https://github.com/bipul-hossein/postgresql_crud_operation
expressjs nodejs postgresql sql
Last synced: 3 months ago
JSON representation
A backend-only implementation demonstrating basic CRUD operations using PostgreSQL.
- Host: GitHub
- URL: https://github.com/bipul-hossein/postgresql_crud_operation
- Owner: bipul-hossein
- Created: 2024-10-21T19:33:40.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-21T20:14:00.000Z (over 1 year ago)
- Last Synced: 2025-02-09T08:42:06.118Z (over 1 year ago)
- Topics: expressjs, nodejs, postgresql, sql
- Language: JavaScript
- Homepage:
- Size: 55.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
- Learn how to get a specific commit without cloning: [Get specific commit without cloning](docs/get_specific_commit_without_cloning.md)
---
### PostgreSQL CRUD Operation Backend
This repository contains backend code for performing CRUD (Create, Read, Update, Delete) operations using PostgreSQL. The project is designed to demonstrate efficient and secure data handling practices with a focus on backend development.
*Features:*
- *Create:* Insert new records into the database.
- *Read:* Retrieve records from the database.
- *Update:* Modify existing records.
- *Delete:* Remove records from the database.
*Technologies Used:*
- Node.js
- Express.js
- PostgreSQL
*Installation:*
1. *Clone the repository:*
```bash
git clone
cd repository-name
```
2. *Install dependencies:*
```bash
npm install
```
3. *Set up the database:*
- Create a PostgreSQL database.
- Update the database configuration in db/db.js.
4. *Run the server:*
```bash
npm start
npm run dev // for nodemon+
```
*Contribution:*
Contributions are welcome! Feel free to fork the repository and submit a pull request.