Skip to content

Instantly share code, notes, and snippets.

View mubbi's full-sized avatar

Mubbasher Ahmed Qureshi mubbi

View GitHub Profile
@mubbi
mubbi / mern-developers-guide.md
Created January 1, 2026 12:14
Developers Guide for MERN

Developer Standards Guide

Tech Stack: Node.js 20+, React 18+, Next.js 14+, Express.js 4+, MongoDB 7+, TypeScript 5+

This document defines mandatory standards and best practices for building scalable, maintainable, secure, and high‑performance applications using the MERN stack (MongoDB, Express.js, React, Node.js) with Next.js and TypeScript. All developers must follow these guidelines consistently.


1. General Engineering Principles

@mubbi
mubbi / laravel-developers-guide.md
Last active January 19, 2026 06:00
Developers Guide for Laravel

Developer Standards Guide

Tech Stack: PHP 8.2+, Laravel 10+, MySQL 8+

This document defines mandatory standards and best practices for building scalable, maintainable, secure, and high‑performance applications using PHP, Laravel, and MySQL. All developers must follow these guidelines consistently.


1. General Engineering Principles

@mubbi
mubbi / nginx.conf
Created August 19, 2018 16:28 — forked from lkmadushan/nginx.conf
NGINX configuration for multi-tenant PHP application
map $http_accept $api_version {
default 0;
"application/vnd.example.v1+json" 1;
}
server {
listen 80;
listen [::]:80;