A living registry of everything I ship — Web3 tools, blockchain apps, and DeFi experiments.
Live: cryptoexplor.vercel.app
- 🔄 Auto-sync — Add a
.jsfile, push, and it's live in 30 seconds - 🔍 Smart Search — Find projects by name, tags, or description
- 🏷️ Status Filters — Filter by production, beta, alpha, or paused
- 📊 Auto Serials — Projects numbered automatically by launch date
- 🎨 Dark Theme — Clean, modern UI inspired by Web3 aesthetics
- ⚡ Edge Optimized — Static generation for instant page loads
- 🌐 Web3 Native — Built for blockchain developers and researchers
# Clone the repository
git clone https://github.com/CryptoExplor/builds.git
cd builds
# Install dependencies
npm install
# Run development server
npm run dev
# Open http://localhost:3000Create a file in tools/ (e.g., my-project.js):
export default {
name: "My Project",
slug: "my-project", // Used in URL
description: "What this project does",
category: ["Category1", "Category2"],
tags: ["tag1", "tag2", "tag3"],
status: "production", // alpha | beta | production | paused
visibility: "public", // public | private
liveUrl: "https://my-project.vercel.app",
github: "https://github.com/CryptoExplor/my-project",
launched: "2025-01-17" // YYYY-MM-DD
}Serial numbers are auto-generated — don't add them manually!
Then push:
git add tools/my-project.js
git commit -m "Add my-project"
git pushVercel auto-deploys in ~30 seconds. Done! ✅
builds/
├── app/
│ ├── layout.jsx # Root layout + metadata
│ ├── page.jsx # Home page (server-rendered)
│ ├── globals.css # Global styles + Tailwind
│ ├── components/
│ │ ├── Navbar.jsx # Navigation bar
│ │ ├── ToolCard.jsx # Project cards
│ │ ├── ToolGrid.jsx # Grid with filters (client)
│ │ ├── StatusBadge.jsx # Status indicators
│ │ └── Footer.jsx # Footer with links
│ └── tools/
│ └── [slug]/
│ └── page.jsx # Dynamic project pages
├── lib/
│ └── loadTools.js # Core: Git-based data loader
├── tools/ # 🔥 ADD YOUR PROJECTS HERE
│ ├── farmlabs.js
│ └── tempo.js
├── .github/ # Templates & workflows
└── public/ # Static assets
This site is deployed on Vercel at cryptoexplor.vercel.app
- Fork this repository
- Import on Vercel
- Framework preset: Next.js (auto-detected)
- Deploy!
Every push to main triggers auto-deployment.
| Layer | Technology |
|---|---|
| Framework | Next.js 14 (App Router) |
| Styling | Tailwind CSS |
| Icons | Lucide React |
| Hosting | Vercel (Edge Network) |
| Data Source | Git (tools/*.js files) |
| Language | JavaScript |
- Git = Database — No CMS, no API, just version-controlled files
- Zero Config — Drop a file, get a page automatically
- Static First — Build-time generation for maximum speed
- Developer UX — Optimized for shipping fast
Live projects on the registry:
- FarmLabs — Web3 automation suite for EVM testnet testing & wallet simulation
- Tempo Tools — Developer utilities for the Tempo blockchain ecosystem
- Core registry functionality
- Search and filters
- Auto-generated routing
- GitHub API integration (stars, last commit)
- Featured projects flag
- Project screenshots/thumbnails
- Tag-based related projects
- RSS feed for new projects
- Analytics dashboard
We welcome contributions! Please see our Contributing Guide for details.
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
MIT License - See LICENSE for details.
This means you can use, modify, and distribute this code freely.
Tip: 0x4f6Fb0A6c8A4C667bdF73C0257BE162B144c1624
Made with 🔥 by CryptoExplor
Trust through transparency
Built with Next.js • Deployed on Vercel