{"id":46276369,"url":"https://github.com/coderooz/cloudinary-next","last_synced_at":"2026-03-04T04:31:33.872Z","repository":{"id":287915122,"uuid":"966184579","full_name":"coderooz/cloudinary-next","owner":"coderooz","description":"A modern Next.js 15 application showcasing seamless integration with Cloudinary for powerful media management, featuring a beautiful UI built with Shadcn components and fluid animations.","archived":false,"fork":false,"pushed_at":"2025-04-14T15:39:17.000Z","size":99,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-14T16:47:35.552Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/coderooz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null}},"created_at":"2025-04-14T14:30:20.000Z","updated_at":"2025-04-14T15:39:20.000Z","dependencies_parsed_at":"2025-04-14T16:47:40.181Z","dependency_job_id":"8c89d551-de8f-4320-9144-39e30d339726","html_url":"https://github.com/coderooz/cloudinary-next","commit_stats":null,"previous_names":["coderooz/cloudinary-next"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/coderooz/cloudinary-next","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderooz%2Fcloudinary-next","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderooz%2Fcloudinary-next/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderooz%2Fcloudinary-next/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderooz%2Fcloudinary-next/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/coderooz","download_url":"https://codeload.github.com/coderooz/cloudinary-next/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderooz%2Fcloudinary-next/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30071687,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T03:25:38.285Z","status":"ssl_error","status_checked_at":"2026-03-04T03:25:05.086Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2026-03-04T04:31:33.310Z","updated_at":"2026-03-04T04:31:33.862Z","avatar_url":"https://github.com/coderooz.png","language":"TypeScript","readme":"# Cloudinary NextJs\n\nA modern Next.js 15 application showcasing seamless integration with Cloudinary for powerful media management, featuring a beautiful UI built with Shadcn components and fluid animations.\n\n![Cloudinary NextJs Demo](./public/demo-screenshot.png)\n\n## Features\n\n- 🖼️ Complete Cloudinary API integration\n- 🚀 Next.js 15 App Router\n- 🔒 Protected API routes with NextAuth.js\n- 💅 Beautiful UI with Shadcn UI components\n- ✨ Smooth animations with Framer Motion\n- 📱 Fully responsive design\n- 🌗 Light/dark mode support\n- 🧩 Modular and extensible architecture\n\n## Cloudinary Features\n\n- Image/video uploads with drag \u0026 drop\n- Asset gallery with filtering and sorting\n- Image transformations and editing\n- Asset tagging and organization\n- Bulk operations (delete, tag, download)\n- Image optimization and responsive delivery\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js 18.17 or later\n- npm or yarn\n- Cloudinary account\n\n### Installation\n\n1. Clone the repository:\n\n```bash\ngit clone https://github.com/coderooz/Cloudinary-NextJs.git\ncd Cloudinary-NextJs\n```\n\n2. Install dependencies:\n\n```bash\nnpm install\n# or\nyarn install\n```\n\n3. Set up environment variables:\n\nCreate a `.env.local` file in the root directory with the following variables:\n\n```\n# Cloudinary Configuration\nCLOUDINARY_CLOUD_NAME=your_cloud_name\nCLOUDINARY_API_KEY=your_api_key\nCLOUDINARY_API_SECRET=your_api_secret\n\n# NextAuth Configuration\nNEXTAUTH_SECRET=your_nextauth_secret\nNEXTAUTH_URL=http://localhost:3000\n\n# Auth Provider (GitHub example)\nGITHUB_ID=your_github_client_id\nGITHUB_SECRET=your_github_client_secret\n```\n\n4. Run the development server:\n\n```bash\nnpm run dev\n# or\nyarn dev\n```\n\n5. Open [http://localhost:3000](http://localhost:3000) in your browser to see the application.\n\n## Project Structure\n\n```\ncloudinary-nextjs/\n├── app/\n│   ├── (auth)/\n│   │   ├── login/\n│   │   └── register/\n│   ├── (dashboard)/\n│   │   ├── dashboard/\n│   │   ├── gallery/\n│   │   └── settings/\n│   ├── api/\n│   │   ├── auth/\n│   │   └── private/\n│   │       └── assets/\n│   │           └── [actionName]/\n│   ├── layout.tsx\n│   └── page.tsx\n├── components/\n│   ├── cloudinary/\n│   │   ├── AssetGallery.tsx\n│   │   ├── ImageUploader.tsx\n│   │   └── ...\n│   ├── layout/\n│   ├── ui/\n│   └── animations/\n├── lib/\n│   ├── cloudinary/\n│   ├── auth/\n│   └── utils/\n├── public/\n├── styles/\n├── types/\n├── .env.local\n├── .gitignore\n├── next.config.js\n├── package.json\n├── README.md\n└── tsconfig.json\n```\n\n## Usage Examples\n\n### Basic Image Upload\n\n```tsx\nimport { ImageUploader } from \"@/components/cloudinary/ImageUploader\";\n\nexport default function UploadPage() {\n  return (\n    \u003cdiv className=\"container mx-auto py-10\"\u003e\n      \u003ch1 className=\"text-2xl font-bold mb-6\"\u003eUpload Images\u003c/h1\u003e\n      \u003cImageUploader folder=\"my-uploads\" /\u003e\n    \u003c/div\u003e\n  );\n}\n```\n\n### Display Image Gallery\n\n```tsx\nimport { AssetGallery } from \"@/components/cloudinary/AssetGallery\";\n\nexport default function GalleryPage() {\n  return (\n    \u003cdiv className=\"container mx-auto py-10\"\u003e\n      \u003ch1 className=\"text-2xl font-bold mb-6\"\u003eImage Gallery\u003c/h1\u003e\n      \u003cAssetGallery folder=\"my-uploads\" /\u003e\n    \u003c/div\u003e\n  );\n}\n```\n\n## API Documentation\n\nThe project implements a comprehensive API for interacting with Cloudinary:\n\n- `POST /api/private/assets/upload` - Upload images to Cloudinary\n- `POST /api/private/assets/delete` - Delete images from Cloudinary\n- `GET /api/private/assets/list` - List images from a folder\n- `GET /api/private/assets/details` - Get details of a specific image\n- `POST /api/private/assets/rename` - Rename an image\n- `POST /api/private/assets/transform` - Apply transformations to an image\n- `POST /api/private/assets/tag` - Tag images\n- `POST /api/private/assets/generateArchive` - Generate a ZIP archive of images\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## Acknowledgements\n\n- [Next.js](https://nextjs.org/)\n- [Cloudinary](https://cloudinary.com/)\n- [Shadcn UI](https://ui.shadcn.com/)\n- [Framer Motion](https://www.framer.com/motion/)\n- [NextAuth.js](https://next-auth.js.org/)\n- [Tailwind CSS](https://tailwindcss.com/)\n\n---\n\nBuilt with ❤️ by [Coderooz](https://github.com/coderooz)","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoderooz%2Fcloudinary-next","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoderooz%2Fcloudinary-next","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoderooz%2Fcloudinary-next/lists"}