The Community-Driven Developer Toolbox - Built by Developers, For Developers
A revolutionary open-source platform democratizing developer productivity tools. Create, share, and discover tools that streamline your workflow - all with personalized, auth-based storage and a thriving community marketplace.
ToolBox is revolutionizing how developers create and share productivity tools. We're building more than just a collection of utilities - we're creating a democratized marketplace where any developer can contribute tools, share knowledge, and build upon each other's work.
- 🌍 Community-First: Every developer can contribute tools, not just consume them
- 🔐 Privacy-Focused: Your data is yours - auth-based storage ensures complete privacy
- 🔌 Plugin Architecture: Build and share tools without touching the core codebase
- 🤝 Open Collaboration: Real-time collaboration, sharing, and team features
- 🚀 Modern Stack: Built with Next.js 14, TypeScript, and cutting-edge technologies
- 🔐 User Authentication - Secure login with GitHub/Google OAuth (Coming Soon)
- 💾 Personal Storage - Auth-based data storage - your templates, snippets, and tools are private by default
- ⚡ Lightning Fast - Optimized performance with tools running directly in your browser
- 🎨 Modern UI - Beautiful, responsive interface built with Radix UI and Tailwind CSS
- 🌙 Dark Mode - Full dark mode support for comfortable extended use
- 📦 MongoDB Integration - Robust data storage with user isolation
- 🛡️ Type Safe - Built with TypeScript for reliability and superior developer experience
- 🚨 Rate Limiting - API protection with intelligent rate limiting and IP-based tracking
- 🔌 Plugin Marketplace - Discover and install community-created tools
- 👥 Real-time Collaboration - Work together on templates and snippets
- 🤖 AI-Powered Tools - Intelligent code suggestions and automation
- 📱 Mobile Apps - Native iOS and Android applications
- 🌐 Public API & SDK - Programmatic access to all features
- 📊 Analytics Dashboard - Insights into your productivity and tool usage
Create, organize, and manage reusable code templates with variable support. Perfect for boilerplate code, configuration files, and documentation templates.
Rich markdown editing experience with live preview, syntax highlighting, and export capabilities.
Generate database schemas, TypeScript types, and validation schemas with AI assistance.
Save and organize code snippets with syntax highlighting for quick reference and reuse.
Track and manage your development profiles and configurations across different platforms and environments.
Streamline your GitHub workflow with helpful utilities for repositories, issues, and pull requests.
- Node.js 18.x or higher
- npm or yarn or pnpm
- MongoDB (optional, for database features)
- Clone the repository:
git clone https://github.com/rishabh3562/ToolBox.git
cd ToolBox- Install dependencies:
npm install- Set up environment variables:
# Copy the example environment file
cp .env.example .env- Configure required environment variables in
.env:
# MongoDB connection (required)
MONGODB_URI=mongodb://127.0.0.1:27017/toolbox
# NextAuth configuration (required)
NEXTAUTH_URL=http://localhost:3000
NEXTAUTH_SECRET= # Generate with: openssl rand -base64 32
# Admin credentials (required)
ADMIN_EMAIL=your-email@example.com
ADMIN_PASSWORD= # Generate with: openssl rand -base64 24 (min 16 chars)Generate secure credentials:
# Generate NextAuth secret (copy output to NEXTAUTH_SECRET)
openssl rand -base64 32
# Generate admin password (copy output to ADMIN_PASSWORD)
openssl rand -base64 24Optional but recommended for production:
# Upstash Redis (required for rate limiting in production)
# Sign up at: https://upstash.com (free tier available)
UPSTASH_REDIS_REST_URL=https://your-redis.upstash.io
UPSTASH_REDIS_REST_TOKEN=your-token
# Gemini AI (for AI-powered features)
NEXT_PUBLIC_GEMINI_API_KEY=your-key # Get from https://makersuite.google.com/app/apikey- Verify your configuration:
The app will automatically validate your environment variables on startup. If anything is missing or misconfigured, you'll see helpful error messages.
- Run the development server:
npm run dev-
Open http://localhost:3000 in your browser
-
Access admin dashboard at http://localhost:3000/login
- Use the
ADMIN_EMAILandADMIN_PASSWORDyou set in.env
- Use the
Before deploying to production, ensure:
-
NEXTAUTH_SECRETis at least 32 characters and randomly generated -
ADMIN_PASSWORDis at least 16 characters and randomly generated -
.envfile is in.gitignore(it is by default) - No credentials are hardcoded in source code
- Redis (Upstash) is configured for production deployments
-
NEXTAUTH_URLis set to your actual domain in production - MongoDB uses Atlas or managed instance (not localhost) in production
To build the application for production:
npm run build
npm run start# Run in development mode
npm run dev
# Build for production
npm run build
# Start production server
npm run start
# Lint code
npm run lint- Framework: Next.js 14 (App Router)
- Language: TypeScript
- Styling: Tailwind CSS
- UI Components: Radix UI
- Database: MongoDB with Mongoose
- Code Editor: Monaco Editor
- Markdown: react-markdown with remark-gfm
- Forms: react-hook-form with Zod validation
- Icons: Lucide React
- AI Integration: Google Gemini API
ToolBox/
├── app/ # Next.js 14 app directory
│ ├── tools/ # Individual tool pages
│ ├── page.tsx # Home page
│ └── layout.tsx # Root layout
├── components/ # React components
│ ├── ui/ # Reusable UI components
│ └── ... # Feature-specific components
├── lib/ # Utility functions and configurations
│ ├── db/ # Database models and services
│ └── utils.ts # Helper functions
├── types/ # TypeScript type definitions
└── .github/ # GitHub workflows and templates
ToolBox is built by the community, for the community. We're actively seeking contributors to help us democratize developer tools!
We're participating in Hacktoberfest! Check out our curated issues for contributors.
- Read the docs: Check our Contributing Guide and CLA
- Find an issue: Browse good first issues
- Fork & code: Create your feature branch (
git checkout -b feature/amazing-feature) - Test thoroughly: Ensure your changes work as expected
- Submit PR: Push your branch and open a Pull Request
- Collaborate: Work with maintainers to refine your contribution
We especially need help with:
- Implementing NextAuth.js with GitHub/Google OAuth
- Migrating to user-scoped database architecture
- Building privacy controls and data isolation
- Designing plugin API and manifest format
- Building plugin loader and sandbox environment
- Creating plugin SDK and documentation
- Building tool discovery and submission system
- Implementing ratings, reviews, and categories
- Creating tool analytics dashboard
- Real-time editing with WebSockets
- Team workspaces and sharing
- Live presence indicators
- Expanding AI features beyond schema generation
- Code suggestions and auto-completion
- Intelligent search and recommendations
- React Native or Capacitor mobile apps
- PWA implementation
- Offline functionality
- Code: Features, bug fixes, optimizations
- Design: UI/UX improvements, icons, animations
- Documentation: Guides, tutorials, API docs
- Testing: Write tests, report bugs, QA
- Ideas: Suggest features, tools, improvements
- Community: Help others, answer questions, review PRs
Important: By contributing, you agree to our CLA terms.
We provide several issue templates to help you contribute:
- New Tool - Submit a new tool to be added to ToolBox
- Bug Report - Report bugs or issues
- Feature Request - Suggest new features or improvements
- Tool Improvement - Suggest improvements to existing tools
This project is licensed under a Proprietary License. See the LICENSE file for details.
- ✅ View & Study: You may view and study the source code for educational purposes
- ✅ Fork to Contribute: You may fork the repository to contribute back to the original project
- ❌ No Redistribution: You may NOT redistribute the software in any form
- ❌ No Commercial Use: Only the owner may use this commercially
- ❌ No Derivatives: You may NOT create competing products based on this software
ALL commercial rights are exclusively retained by Rishabh Dubey (GitHub: @rishabh3562).
- ONLY the owner may monetize, sell, license, or commercialize this project
- Contributors grant exclusive commercial rights to the owner (see CLA)
- Any commercial use by others requires explicit written permission
For commercial licensing inquiries, contact: @rishabh3562 on GitHub
- Built with Next.js
- UI components from Radix UI
- Icons from Lucide
- Styled with Tailwind CSS
- AI powered by Google Gemini
- Owner: Rishabh Dubey
- GitHub: @rishabh3562
- Project Link: https://github.com/rishabh3562/ToolBox
- Issues: Report a bug or request a feature
- Commercial Licensing: Contact @rishabh3562 on GitHub
- Core tool infrastructure
- User Authentication (GitHub, Google OAuth)
- User-scoped data storage with privacy controls
- User profiles and preferences
- Tool Marketplace for discovery
- Plugin architecture for community tools
- Tool submission and approval workflow
- Rating and review system
- Social features (follow, like, share)
- Real-time collaboration features
- Team workspaces and organizations
- Advanced search and discovery
- Public API and SDK
- Mobile applications (iOS/Android)
- AI-powered tool suggestions
- Automated code generation
- Advanced analytics and insights
- Enterprise features
- International expansion
If ToolBox helps improve your workflow, please consider:
- Giving it a star on GitHub
- Sharing it with your network
- Contributing new tools or features
- Reporting bugs and suggesting improvements
Made with ❤️ for developers, by developers
Building the ultimate toolkit for modern development workflows.