{"id":21867987,"url":"https://github.com/anibalalpizar/json-to-xml-converter","last_synced_at":"2026-04-09T09:46:53.465Z","repository":{"id":264751944,"uuid":"894225635","full_name":"anibalalpizar/json-to-xml-converter","owner":"anibalalpizar","description":"🔄 Convert JSON to XML easily with modern UI tools.","archived":false,"fork":false,"pushed_at":"2024-11-27T09:24:49.000Z","size":472,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-26T16:15:48.718Z","etag":null,"topics":["converter","json","json-to-xml","nextjs","open-source","shadcn-ui","xml"],"latest_commit_sha":null,"homepage":"https://json-to-xml.vercel.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/anibalalpizar.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}},"created_at":"2024-11-26T01:23:32.000Z","updated_at":"2024-11-27T09:24:53.000Z","dependencies_parsed_at":"2024-11-26T06:27:22.986Z","dependency_job_id":"e5173fee-964e-4d5e-8058-a12e6ca36f7d","html_url":"https://github.com/anibalalpizar/json-to-xml-converter","commit_stats":null,"previous_names":["anibalalpizar/json-to-xml-converter"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anibalalpizar%2Fjson-to-xml-converter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anibalalpizar%2Fjson-to-xml-converter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anibalalpizar%2Fjson-to-xml-converter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anibalalpizar%2Fjson-to-xml-converter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anibalalpizar","download_url":"https://codeload.github.com/anibalalpizar/json-to-xml-converter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244874718,"owners_count":20524581,"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":["converter","json","json-to-xml","nextjs","open-source","shadcn-ui","xml"],"created_at":"2024-11-28T05:11:20.351Z","updated_at":"2025-12-30T23:56:06.137Z","avatar_url":"https://github.com/anibalalpizar.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JSON to XML Converter\n\nA modern web application built with Next.js that allows users to convert JSON data to XML format with ease.\n\n🌐 **[Try it live](https://json-to-xml.vercel.app/)**\n\n| Light Mode | Dark Mode |\n|------------|-----------|\n| ![JSON to XML Converter](public/image-light.png) | ![JSON to XML Converter](public/image-dark.png) |\n\n## Features\n\n- 🔄 Real-time JSON to XML conversion\n- 🎨 Beautiful and responsive UI with dark/light mode support\n- ✨ Syntax highlighting for both JSON and XML\n- 📋 Easy copy/paste functionality\n- 🔗 Shareable conversion links\n- 📱 Mobile-friendly design\n- 🎯 Built-in JSON validation and formatting\n- 📚 Pre-built examples for quick testing\n\n## Tech Stack\n\n- [Next.js 15](https://nextjs.org/) - React framework\n- [TypeScript](https://www.typescriptlang.org/) - Type safety\n- [Tailwind CSS](https://tailwindcss.com/) - Styling\n- [shadcn/ui](https://ui.shadcn.com/) - UI components\n- [xml-js](https://github.com/nashwaan/xml-js) - JSON to XML conversion\n- [React Syntax Highlighter](https://github.com/react-syntax-highlighter/react-syntax-highlighter) - Code highlighting\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js 20 or higher\n- npm or yarn package manager\n\n### Installation\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/anibalalpizar/json-to-xml-converter.git\ncd json-to-xml-converter\n```\n\n2. Install dependencies:\n```bash\nnpm install\n# or\nyarn install\n```\n\n3. Start the development server:\n```bash\nnpm run dev\n# or\nyarn dev\n```\n\n4. Open [http://localhost:3000](http://localhost:3000) in your browser\n\n## Project Structure\n\n```\nsrc/\n├── app/                 # Next.js app router\n├── components/         \n│   ├── convert/        # Conversion-related components\n│   ├── layout/         # Layout components\n│   └── ui/             # Reusable UI components\n├── hooks/              # Custom React hooks\n├── lib/                # Utility functions and services\n│   ├── services/       # Business logic services\n│   └── utils.ts        # Helper functions\n└── types/              # TypeScript type definitions\n```\n\n## Usage\n\n1. Enter or paste your JSON data in the left editor\n2. The converted XML will appear in real-time on the right\n3. Use the format button to beautify your JSON\n4. Share your conversion by clicking the share button\n5. Toggle between light and dark modes using the theme switcher\n\n## Demo\n\nTry out the live demo at [https://json-to-xml.vercel.app/](https://json-to-xml.vercel.app/)\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n1. Fork the project\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Support\n\nIf you find this project helpful, please give it a ⭐️ on GitHub!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanibalalpizar%2Fjson-to-xml-converter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanibalalpizar%2Fjson-to-xml-converter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanibalalpizar%2Fjson-to-xml-converter/lists"}