https://github.com/ndizeyedavid/node-js-backend-mysql
Just for my study purposes, clone it to learn how to use mysql with nodejs
https://github.com/ndizeyedavid/node-js-backend-mysql
Last synced: 3 months ago
JSON representation
Just for my study purposes, clone it to learn how to use mysql with nodejs
- Host: GitHub
- URL: https://github.com/ndizeyedavid/node-js-backend-mysql
- Owner: ndizeyedavid
- Created: 2024-12-22T05:15:15.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-12-22T05:25:26.000Z (6 months ago)
- Last Synced: 2025-01-08T19:45:37.695Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# How to catch up
first follow these steps to start and run it
1. clone it
```bash
git clone https://github.com/ndizeyeDavid/node-js-backend-mysql
```2. enter the project folder
```bash
cd node-js-backend-mysql
```3. install all dependecies in one go
```bash
npm install
```4. create & configure the .env file
```.env
SERVER_PORT=
HOST=
USER=
PASSWORD=
DATABASE=
```
reference
5. Create a database and match the table called products

6. start the server
```bash
npm start
```7. create endpoints in **Post Man** or **Thunder Client**

8. lastly this is our your api calls should be




## ✨Happy codding 💫