This project is a minimal Instagram-style web page built to help understand how to use external APIs and display data dynamically using EJS (Embedded JavaScript), Node.js, and Express.
- Displays user posts with likes and comments Number
- Basic routing and templating using Express and EJS
- Simple UI layout with image, like/comment display, and formatting
- Dynamic rendering with live API integration
- Node.js
- Express.js
- EJS
- CSS / HTML 📁 Project Structure EJSDIR/ │ ├── views/ # EJS Templates │ └── index.ejs │ ├── public/ # Static assets (CSS, images) │ └── style.css │ ├── data.json # Local post data (likes/comments) ├── app.js # Main Express app ├── package.json # Node dependencies