{"id":24258212,"url":"https://github.com/mgoyal98/dev-ease","last_synced_at":"2025-03-04T19:49:03.137Z","repository":{"id":271773270,"uuid":"897365869","full_name":"mgoyal98/dev-ease","owner":"mgoyal98","description":"A modern web application built with Next.js that provides a collection of essential development tools to streamline your workflow.","archived":false,"fork":false,"pushed_at":"2025-01-21T04:35:01.000Z","size":8604,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-21T05:23:47.772Z","etag":null,"topics":["dev-tools","developer-tools","encoder-decoder","formatters","nextjs","productivity-tools","pwa","tailwindcss","tech-tools","typescript"],"latest_commit_sha":null,"homepage":"https://devease.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mgoyal98.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"thanks_dev":null,"custom":["https://razorpay.me/@mgoyal"]}},"created_at":"2024-12-02T14:04:40.000Z","updated_at":"2025-01-21T04:35:05.000Z","dependencies_parsed_at":"2025-01-09T20:29:17.659Z","dependency_job_id":null,"html_url":"https://github.com/mgoyal98/dev-ease","commit_stats":null,"previous_names":["mgoyal98/dev-ease"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgoyal98%2Fdev-ease","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgoyal98%2Fdev-ease/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgoyal98%2Fdev-ease/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgoyal98%2Fdev-ease/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mgoyal98","download_url":"https://codeload.github.com/mgoyal98/dev-ease/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241913781,"owners_count":20041461,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dev-tools","developer-tools","encoder-decoder","formatters","nextjs","productivity-tools","pwa","tailwindcss","tech-tools","typescript"],"created_at":"2025-01-15T05:31:56.477Z","updated_at":"2025-03-04T19:49:03.112Z","avatar_url":"https://github.com/mgoyal98.png","language":"TypeScript","funding_links":["https://razorpay.me/@mgoyal"],"categories":[],"sub_categories":[],"readme":"# DevEase - Your Go-To Toolbox for All Things Tech\n\nA modern web application built with Next.js that provides a collection of essential development tools to streamline your workflow.\n\n🌐 **[Visit DevEase](https://devease.app)**\n\n![DevEase](src/app/cover.png?raw=true 'DevEase')\n\n## 🚀 Features\n\n- 💻 **Technical Features**\n  - Server-side rendering with Next.js 14\n  - Type safety with TypeScript\n  - Responsive design with Tailwind CSS\n  - Dark mode support\n  - Google Analytics integration\n  - Performance monitoring with Vercel Analytics\n\n## 🔧 Prerequisites\n\nBefore you begin, ensure you have installed:\n\n- Node.js (version 18 or higher)\n- npm, yarn, or pnpm\n- Docker (optional, for containerized deployment)\n\n## 🏗️ Installation\n\n### Local Development\n\n1. Clone the repository:\n\n```bash\ngit clone https://github.com/mgoyal98/dev-ease.git\ncd dev-ease\n```\n\n2. Install dependencies:\n\n```bash\nnpm install\n# or\nyarn install\n# or\npnpm install\n```\n\n3. Set up environment variables:\n\n```bash\ncp .env.example .env.local\n```\n\n4. Start the development server:\n\n```bash\nnpm run dev\n# or\nyarn dev\n# or\npnpm dev\n```\n\nVisit [http://localhost:3000](http://localhost:3000) to see the application.\n\n### Docker Deployment\n\n1. Build the Docker image:\n\n```bash\ndocker build -t dev-ease .\n```\n\n2. Run the container:\n\n```bash\ndocker run -p 3000:3000 dev-ease\n```\n\nVisit [http://localhost:3000](http://localhost:3000) to see the application.\n\n## 📁 Project Structure\n\n```\nsrc/\n├── app/                    # Next.js app directory\n│   ├── [categoryId]/      # Dynamic category routes\n│   ├── about/             # About page\n│   └── layout.tsx         # Root layout\n├── common/                # Shared utilities and constants\n│   ├── constants/         # Application constants\n│   ├── enums/            # TypeScript enums\n│   ├── interfaces/       # TypeScript interfaces\n│   └── utils/            # Utility functions\n├── components/           # Reusable React components\n└── tools/               # Individual tool implementations\n```\n\n## 🛠️ Development\n\nThis project uses:\n\n- **TypeScript** for type safety\n- **ESLint** for code linting\n- **Prettier** for code formatting\n- **Tailwind CSS** for styling\n- **Next.js** for the framework\n- **Docker** for containerization\n- **Vercel** for deployment\n\n### Available Scripts\n\n```bash\n# Development\nnpm run dev         # Start development server\n\n# Building\nnpm run build      # Create production build\nnpm run start      # Start production server\n\n# Docker\ndocker build -t dev-ease .    # Build Docker image\ndocker run -p 3000:3000 dev-ease    # Run Docker container\n\n# Code Quality\nnpm run lint       # Run ESLint\nnpm run format     # Run Prettier\n```\n\n## 🌟 Support\n\nIf you find this project helpful, please consider:\n\n- Giving it a star on GitHub ⭐\n- Sharing it with others 🗣️\n- [Buying me a coffee ☕](https://razorpay.me/@mgoyal)\n\n## 📫 Quick Links\n\n- 🏠 [DevEase Website](https://devease.app)\n- 💻 [GitHub Repository](https://github.com/mgoyal98/dev-ease)\n- 🐛 [Issue Tracker](https://github.com/mgoyal98/dev-ease/issues)\n\n## 📫 Contact\n\n- Website: [devease.app](https://devease.app)\n- GitHub: [@mgoyal98](https://github.com/mgoyal98)\n- LinkedIn: [Madhur Goyal](https://linkedin.com/in/madhur-goyal)\n- Personal Website: [mgoyal.com](https://mgoyal.com)\n\n## Questions or Feedback?\n\nIf you have any questions, issues, or suggestions, feel free to open a GitHub [issue]\u003chttps://github.com/mgoyal98/dev-ease/issues\u003e. Thank you for using DevEase!\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmgoyal98%2Fdev-ease","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmgoyal98%2Fdev-ease","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmgoyal98%2Fdev-ease/lists"}