https://github.com/pawankumar-dev/backend
https://github.com/pawankumar-dev/backend
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/pawankumar-dev/backend
- Owner: PawanKumar-Dev
- Created: 2025-03-12T07:40:21.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2025-03-12T07:49:08.000Z (about 2 months ago)
- Last Synced: 2025-03-12T08:33:17.532Z (about 2 months ago)
- Language: JavaScript
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Backend
- Backend Development has two major components to it:
- Backend Programming Language (like JS, PHP, Python etc.)
- Database (like MySQL, MongoDB, Postgres etc.)- At its core, backend stores our data in a database and fetch this data acc to need.
- Most likely we use "framework" with our langauge to make faster and easier to develop.
- In JS we use "Express.js" framework to communicate with DB
- "Mongoose" is framework for DB handling.- We will use Node.js and NPM for development.
- We can initilze a node empty project with:
```
npm init
```