Skip to content

Aryan27-max/OMNISTACK-My-Dev-Journey

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

24 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿ”ฅ OMNISTACK - My Dev Journey

OmniStack My Dev Journey is a long-term repository documenting my complete learning path across multiple programming languages, frameworks, and tech stacks. From low-level fundamentals to full-stack development, this repo contains notes, code snippets, projects, experiments, and concept breakdowns for every technology I learn.

๐Ÿ”ฅ What It includes (present and future):

๐Ÿชข Core Programming:

C C++ Java Python

๐ŸŒ Web Fundamentals:

HTML5 Tailwind CSS JavaScript TypeScript

๐Ÿšช Frontend Development:

React Next.js

๐ŸŽ’ Backend Development: Node.js, Express.js

Node.js Express.js

Additional stacks will be added as I keep growing. This repository serves as my central learning hub, tracking my progress as I explore different technologies and become a well-rounded developer.

๐Ÿ“ฆ ๐Ÿ”ง Installation, Clone & Dependencies

๐Ÿ“ Clone the Repository

git clone https://github.com/Aryan27-max/omnistack-my-dev-journey.git

๐Ÿ“ Tack to Repository

cd omnistack-my-dev-journey

๐Ÿ–ฅ๏ธ Core Language Setup

C C++

โš™๏ธInstall MinGW64 (MSYS2 recommended)

winget install -e --id MSYS2.MSYS2

โš™ After installation, install the compilers:

pacman -S mingw-w64-x86_64-gcc mingw-w64-x86_64-g++

โš™ Verify:

gcc --version
g++ --version

โš™ Install Python (Windows)

Python

winget install -e --id Python.Python.3

โš™ Verify installation

python --version
pip --version

โš™ Install JDK 17 or 21

Java

winget install -e --id Oracle.JDK.21

Verify installation

java -version
javac -version

๐ŸŒ Web Development Setup

โš™ Install Node.js LTS

Node.js

โš™ Node.js + npm (node package manager)

winget install -e --id OpenJS.NodeJS.LTS

โš™ Verify:

node -v
npm -v

โš™ Install Node.js LTS

TypeScript

npm install -g typescript

โš™ Verify:

tsc -v

โš›๏ธ Frontend Frameworks

โš™ Create a new React app (Vite recommended)

React

npm create vite@latest my-react-app --template react
cd my-react-app
npm install
npm run dev

โš™ Create a new Next app

Next.js

npx create-next-app@latest my-next-app
cd my-next-app
npm install
npm run dev

๐Ÿ› ๏ธ Backend Frameworks

Express.js

mkdir express-app
cd express-app
npm init -y
npm install express nodemon

โš™ Start script example:

nodemon index.js

MADE WITH โค BY Aryan27-max

About

A personal OmniStack learning archive covering everything from core programming (C, C++, Java, Python) to full-stack web development (HTML, CSS, JS, React, Next.js, Express, TypeScript) and more.A personal OmniStack learning archive covering everything from core programming (C, C++, Java, Python) to full-stack web development (HTML, CSS, JS, React,

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors