Stay informed about the Obsidian plugin ecosystem with Obsidian Stats! Whether you're tracking trending plugins, new releases, or your personal favorites, we've got you covered.
Explore Obsidian plugins with these powerful features:
- New Plugins β Discover plugins released in the past 10 days.
- Latest Updates β Stay up to date with the latest releases and changelogs.
- Trending Plugins β Check out the top 10 trending plugins based on downloads and engagement.
- Most Downloaded β View the most downloaded plugins over last week, last month and overall timeline.
- Favorites β Track your favorite plugins and get notified of new updates.
- Plugin Sharing β Compare and share plugin lists with others.
- Migration Guide β Export and import your favorite plugin lists across devices.
- Scoring System β Build custom scoring functions to rank plugins based on your criteria.
- Tags β Browse plugins by tags to find exactly what you need.
- Share β Share your favorite plugin lists with the community.
Run Obsidian Stats in a Docker container with minimal image size (~50-100MB).
- Docker installed on your system
- A
.envfile with required environment variables
The Dockerfile accepts DATABASE_URL as a build argument, which is required for Prisma to generate the client during the build phase.
PowerShell (Windows):
docker build --build-arg DATABASE_URL="your_mongodb_connection_string" -t obsidian-plugins-stats .Bash (Linux/Mac):
docker build --build-arg DATABASE_URL="your_mongodb_connection_string" -t obsidian-plugins-stats .Load from .env file (PowerShell):
$DATABASE_URL = (Get-Content .env | Select-String -Pattern '^DATABASE_URL=').ToString().Split('=', 2)[1]
docker build --build-arg DATABASE_URL="$DATABASE_URL" -t obsidian-plugins-stats .docker run -p 3000:3000 --env-file .env obsidian-plugins-statsFor easier management, use Docker Compose:
docker-compose up -dTo stop the container:
docker-compose downCreate a .env file in the project root with your configuration:
DATABASE_URL="your_database_url"
NEXT_PUBLIC_SUPABASE_URL="your_supabase_url"
NEXT_PUBLIC_SUPABASE_ANON_KEY="your_supabase_key"
# Add other required environment variablesOnce running, access the application at http://localhost:3000
If you find this tool useful, consider supporting me with a coffee! β

