https://github.com/kzamanbd/express-practice
A simple express app
https://github.com/kzamanbd/express-practice
docker docker-compose express mongoose nginx nodejs socket-io
Last synced: 3 months ago
JSON representation
A simple express app
- Host: GitHub
- URL: https://github.com/kzamanbd/express-practice
- Owner: kzamanbd
- Created: 2023-02-24T06:57:32.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-08-23T19:42:37.000Z (almost 3 years ago)
- Last Synced: 2025-11-22T08:29:11.308Z (7 months ago)
- Topics: docker, docker-compose, express, mongoose, nginx, nodejs, socket-io
- Language: JavaScript
- Homepage: https://express-practice-hazel.vercel.app
- Size: 665 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Express Js
Simple Basic Express Js application
## Features
- Authentication (JWT)
- Authorization (JWT)
- CRUD Operations
- File Upload
- Chat Application (Socket.io)
- Dockerize Application
- Scale Application
- Logging (Winston)
## Run Application
To run the application copy the .env.example to .env and update the values
```bash
npm install
npm start
```
## Dockerize Application
To run the application in docker container
```bash
docker-compose up -d --build
```
## Run Application Scale Mode
To run the application in scale mode
```bash
docker-compose up -d --build --scale express-app=3
```
## Show Application container Logs
To show the application container logs
```bash
docker logs -f
```