An interactive, modern web application designed to help users explore and understand various computer networking protocols. This project, created by Harsh Srivastav, serves as a visual and educational tool for students, developers, and anyone curious about the building blocks of the internet.

- Interactive Protocol Cards: Browse protocols with smooth hover effects and expandable snippets for quick insights.
- Detailed Modal Views: Click on any protocol to open a detailed view with a full description, key characteristics, and an animated visual diagram.
- Animated SVG Diagrams: Custom-built, animated diagrams for each protocol to visually explain concepts like TCP's three-way handshake, UDP's connectionless nature, and more.
- Powerful Search: Instantly filter protocols by name, full name, or description.
- Category Filtering: Easily sort protocols by their layer (Transport, Application, Network).
- Side-by-Side Comparison: An intuitive comparison mode to analyze two protocols against each other based on key metrics like reliability, speed, and connection type.
- Responsive Design: A fully responsive and mobile-friendly interface for a seamless experience on any device.
- Modern Tech Stack: Built with React, TypeScript, and Tailwind CSS for a performant and maintainable application.
The explorer currently includes detailed information and diagrams for the following protocols:
- TCP (Transmission Control Protocol)
- UDP (User Datagram Protocol)
- IP (Internet Protocol)
- HTTP (Hypertext Transfer Protocol)
- HTTPS (Hypertext Transfer Protocol Secure)
- DNS (Domain Name System)
- FTP (File Transfer Protocol)
- SMTP (Simple Mail Transfer Protocol)
- Frontend: React & TypeScript
- Styling: Tailwind CSS
- Icons: Lucide React
- Animations: CSS Animations & Transitions
- Browse: Scroll through the grid of protocol cards. Hover over a card to see a tooltip with more information.
- Expand: Click a card once to expand it and see a brief description snippet.
- View Details: Click the "View Details" button or click an already expanded card to open the modal with in-depth information and the animated diagram.
- Search: Use the search bar at the top to find a specific protocol.
- Filter: Click the category buttons (
All,Transport, etc.) to filter the list. - Compare: Click the "Compare Protocols" button to switch to comparison mode. Select two protocols from the dropdowns to see a side-by-side analysis.
/
├── components/
│ ├── diagrams/ # Animated SVG diagrams for each protocol
│ ├── Footer.tsx
│ ├── Header.tsx
│ ├── ProtocolCard.tsx
│ ├── ProtocolComparison.tsx
│ └── ProtocolDetailsModal.tsx
├── constants.ts # Centralized data for all protocols
├── types.ts # TypeScript type definitions
├── App.tsx # Main application component
├── index.html # Entry HTML file
└── index.tsx # React application entry point
This project was designed and developed as a computer networking project by Harsh Srivastav & Anupam Bhargav.
This README provides a comprehensive overview of the Networking Protocol Explorer application.