nithinbekal130 downloadsShow upcoming birthdays from notes with date-of-birth attributes.
A plugin for Obsidian that tracks and displays upcoming birthdays from your notes.
date-of-birth property in a folder you chooseIn the plugin settings, set Birthday notes folder to the folder containing your birthday notes, for example People.
The plugin scans only that folder and its subfolders. Leave the setting empty to disable scanning, or set it to / if you explicitly want to scan the whole vault.
Add a date-of-birth property to the frontmatter of a note in that folder:
---
date-of-birth: 1990-05-15
---
# John Doe
Contact information and other details...
Use the command palette (Ctrl/Cmd + P) and search for "Open Birthday View"
The birthday view will appear in the right sidebar showing:
date-of-birth)/ scans the whole vault.Clone this repository into your vault's .obsidian/plugins/ folder:
cd /path/to/vault/.obsidian/plugins
git clone https://github.com/nithinbekal/obsidian-upcoming-birthdays.git
Install dependencies:
cd obsidian-upcoming-birthdays
npm install
Build the plugin:
npm run build
Reload Obsidian and enable the plugin in Settings → Community Plugins
Run in development mode with auto-rebuild:
npm run dev
The plugin accepts any standard date format that JavaScript can parse:
1990-05-15 (ISO format, recommended)1990/05/15May 15, 199015 May 1990MIT