A collection of mini backend projects
A caching proxy service designed to improve performance by storing frequently requested data
A real-time chat application built with WebSocket
An attribute-based access control system
Each project is self-contained with its own dependencies and setup instructions. Navigate to the respective project directory for detailed documentation.
# Navigate to a specific project
cd caching-proxy/ # For caching proxy
cd websocket-chat/ # For WebSocket chat
cd ABAC/ # For ABAC systembackend/
βββ caching-proxy/ # Caching proxy service
βββ websocket-chat/ # WebSocket chat application
βββ ABAC/ # Attribute-based access control
βββ ...
- Node.js (version requirements may vary by project)
- npm or yarn package manager
- Additional dependencies as specified in each project's documentation
- Clone the repository
git clone https://github.com/hariprasadd0/backend.git
cd backend- Choose a project and follow its specific setup instructions
cd <project-name>
pnpm install
# Follow project-specific README for further setup