A simple web app that lets users upload a food image and get calorie & nutrition information.
The frontend is public, while the backend (private) handles AI food recognition and nutrition lookup.
- 📷 Upload a food image to scan
- 🥗 Detects multiple food items in one image
- 🔢 Calculates total calories
- 📊 Displays nutrition facts (from FatSecret API)
- ⚡ Clean and simple UI
Frontend (this repo):
- HTML
- CSS
- JavaScript
Backend (private repo):
- Node.js + Express.js
- Multer (file upload middleware)
- Google Gemini API (food recognition)
- FatSecret API (nutrition database)
Backend
- This frontend expects a backend API for processing images and fetching nutrition data.
- The backend is private, as it’s part of a mobile app project I’m building with a friend.