Sobriety Day Counter
Track your recovery journey with our sobriety day counter. Counting days of sobriety provides motivation, helps celebrate milestones, and offers tangible evidence of your progress and commitment to a healthier life.
Recovery Milestones
| Days | Milestone | Significance | 1 dayFirst 24 hoursThe hardest step 7 daysOne weekInitial detox complete 30 daysOne monthFirst chip/medallion 90 daysThree monthsMajor milestone 180 daysSix monthsHalfway to a year | 365 days | One year | Annual chip |
Sobriety Day Counter
``javascript
function sobrietyCounter(sobrietyDate) {
const today = new Date();
const soberSince = new Date(sobrietyDate);
const diffTime = today - soberSince;
const diffDays = Math.floor(diffTime / (1000 * 60 * 60 * 24));
// Milestone tracking
const milestones = [7, 30, 60, 90, 180, 365, 730, 1095];
const nextMilestone = milestones.find(m => m > diffDays) || diffDays + 365;
const daysToNextMilestone = nextMilestone - diffDays;
return {
days: diffDays,
weeks: Math.floor(diffDays / 7),
months: Math.floor(diffDays / 30),
years: Math.floor(diffDays / 365),
nextMilestone: nextMilestone,
daysToNextMilestone: daysToNextMilestone,
sobrietySince: soberSince.toLocaleDateString('en-US', {
year: 'numeric',
month: 'long',
day: 'numeric'
})
};
}
``
The Power of Day Counting
In recovery communities, counting days serves multiple purposes: it provides motivation through visible progress, creates accountability, and gives something to protect. "I have 247 days—I don't want to start over" can help during difficult moments.
Celebrating Milestones
Many recovery programs celebrate milestones with chips, medallions, or ceremonies. Common milestones: 24 hours, 1 week, 30 days, 60 days, 90 days, 6 months, 9 months, 1 year, and annual anniversaries. Celebrations reinforce progress and community support.