A poetic, real-time existence counter that visualizes your time alive—down to the second.
Live Demo • Report Bug • Request Feature
Transform your existence into data with a beautiful, real-time counter.
How to use:
- Enter your birthdate (YYYY-MM-DD format)
- Choose a username (e.g., RajdeepSingh)
- Select your favorite theme (Radical, Cosmic, Minimal, or Matrix)
- Get a live counter showing exactly how long you've been alive
- Share your unique link with friends or family
Example: https://exist.io/#/view?username=RajdeepSingh&birthdate=2000-01-01&theme=cosmic
Stand out with a dynamic badge that shows your time alive in your GitHub profile.
How to use:
- Generate your counter on Exist.io
- Copy the Markdown snippet from the "Embed on GitHub" section
- Paste it into your GitHub README.md
- Your badge updates every time someone views your profile!
Example Markdown:

Result: A beautiful SVG image showing your years lived with your chosen theme.
Reflect on your existence in a poetic, visual way.
Perfect for:
- 🌟 Philosophy enthusiasts who ponder existence
- 💭 Existentialists seeking meaningful data
- 🎨 Creators wanting unique profile elements
- 🚀 Developers who love space-themed UIs
- 📊 Data lovers tracking personal metrics
Customize themes:
- Radical - Dark with vibrant pink and cyan gradients
- Cosmic - Deep indigo with purple and yellow space vibes
- Minimal - Clean white with crisp blue accents
- Matrix - Cyberpunk black with hacker-green effects
Exist.io is a unique web application that answers the philosophical question: "How long have I been here?"
It's not just another timer—it's an existential experience wrapped in beautiful design. The app calculates your exact time alive (years, months, days, hours, minutes, seconds) and presents it through:
- 🌊 Glassmorphism UI with animated gradient backgrounds
- ⏱️ Real-time updates that count every second
- 🎨 Four stunning themes inspired by cosmic aesthetics
- 🔗 Shareable links that work for unlimited users
- 📊 Dynamic SVG badges for GitHub profiles
✨ Existential & Poetic
- Transforms abstract time into tangible, visual data
- Encourages reflection on the finite nature of existence
- Beautiful space station iconography symbolizing your journey
🛠️ Developer-Friendly
- Clean, modern React + TypeScript codebase
- Serverless API for dynamic image generation
- Easy to deploy on Vercel/Netlify
- No database required—all data in URL parameters
🎯 Privacy-First
- No data storage or tracking
- No user accounts needed
- All calculations happen client-side
- Your birthdate is only used for age calculation
graph LR
A[Enter Birthdate] --> B[Generate Counter]
B --> C[Live Web Counter]
B --> D[Shareable Link]
B --> E[GitHub Badge]
C --> F[Updates Every Second]
D --> G[Share with Anyone]
E --> H[Dynamic SVG Image]
- Input: User enters username, birthdate, and selects a theme
- Calculate: App computes duration from birthdate to current moment
- Display: Shows years with 8-decimal precision + full breakdown
- Share: Generates unique URL with all parameters
- Embed: API endpoint creates dynamic SVG for GitHub READMEs
-
Real-time Life Duration Counter
Updates every second with smooth animations showing your exact time alive -
Shareable Live Links
Each user gets a unique URL that works independently for unlimited users -
GitHub README Badge
Dynamic SVG images that regenerate on every page view -
Multiple Themes
Choose from 4 carefully crafted themes with unique color palettes -
Cosmic UI Design
Space station visuals, animated gradients, and glassmorphism effects
- Glassmorphism Cards - Frosted glass effect with backdrop blur
- Animated Gradients - Pulsing orbs that create ambient backgrounds
- Gradient Text - Rainbow effects on the main counter display
- Hover Interactions - Scale transforms, glows, and color shifts
- Smooth Animations - Float, pulse, fade, and slide effects
- Status Indicators - Live pulse dots showing real-time status
- Responsive Layout - Perfect on desktop, tablet, and mobile
- No Database - Stateless architecture with URL parameters
- Serverless API - Vercel Functions for image generation
- TypeScript - Full type safety throughout the codebase
- Modern React - Hooks, context, and functional components
- Vite Build - Lightning-fast development and optimized builds
- Tailwind CSS - Utility-first styling with custom animations
- Node.js (v18 or higher)
- npm or yarn
- Git (for version control)
-
Clone the repository
git clone https://github.com/RajdeepKushwaha5/exist.io.git cd exist.io
-
Install dependencies
npm install
-
Set up environment (optional)
# Create .env.local file echo "GEMINI_API_KEY=your_api_key_here" > .env.local
-
Run development server
npm run dev
-
Open in browser
http://localhost:3000
-
Push to GitHub
git add . git commit -m "Initial commit" git push -u origin main
-
Import to Vercel
- Go to vercel.com/new
- Import your GitHub repository
- Vercel auto-detects Vite configuration
- Click Deploy
-
Done! 🎉
- Your app is live at
https://your-app.vercel.app
- Both web counter and API work automatically
- Your app is live at
-
Build the project
npm run build
-
Deploy
netlify deploy --prod
-
Configure serverless functions
- Move
api/
folder tonetlify/functions/
- Update imports as needed
- Move
The /api/image
endpoint generates dynamic SVG images.
Endpoint:
GET /api/image
Parameters:
username
(required) - Display namebirthdate
(required) - Format: YYYY-MM-DDtheme
(optional) - One of:radical
,cosmic
,minimal
,matrix
Example:
https://your-app.vercel.app/api/image?username=RajdeepSingh&birthdate=2000-01-01&theme=cosmic
Response:
- Content-Type:
image/svg+xml
- Cache: 60 seconds
- Size: 600x300px SVG
- React 19 - UI library with modern hooks
- TypeScript 5.8 - Type-safe JavaScript
- Vite 6 - Next-generation build tool
- Tailwind CSS - Utility-first styling
- React Router DOM - Client-side routing
- Vercel Functions - Serverless API endpoints
- Node.js - Runtime environment
- SVG Generation - Dynamic vector graphics
- Custom Templates - Themed image layouts
- Vercel (Recommended) - Zero-config deployment
- Netlify - Alternative with serverless support
- Railway - Container-based hosting
- ESLint - Code linting
- Prettier - Code formatting
- Git - Version control
Modify themes in constants.ts
:
export const THEMES: Theme[] = [
{
name: 'Radical',
id: 'radical',
background: 'bg-gray-900',
text: 'text-white',
accent: 'text-pink-400',
highlight: 'text-cyan-300',
},
// Add your custom theme here
];
Users can set any username they like—no registration required!
Create your own theme by:
- Adding a new theme object to
THEMES
array - Updating the API endpoint in
api/image.ts
to include your theme colors - Testing with different color combinations
Users can enable/disable animations with the bottom-right button on the counter page.
Contributions are welcome! Here's how you can help:
- Fork the repository
- Create a feature branch (
git checkout -b feature/AmazingFeature
) - Commit your changes (
git commit -m 'Add some AmazingFeature'
) - Push to the branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
- 🎨 New theme designs
- 🌍 Internationalization (i18n)
- 📊 Additional counter formats
- 🔧 Performance optimizations
- 📱 Mobile app version
- 🎭 More animation options
This project is licensed under the MIT License - see the LICENSE file for details.
MIT License
Copyright (c) 2025 Rajdeep Singh
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Built with ❤️ using:
- React - UI Library
- Vite - Build Tool
- Tailwind CSS - Styling
- Vercel - Hosting
- Google Fonts - Space Mono - Typography
If you found this project helpful or interesting:
- ⭐ Star this repository
- 🐛 Report bugs by opening an issue
- 💡 Suggest features in the discussions
- 📢 Share with the developer community
- ☕ Support via Buy Me a Coffee (optional)
Built for the modern existentialist
Every second counts. Make them visible.