jsonizeit
v1.0.1
Published
Convert JSON to C# Class, XML and CSV
Readme
⸻
🚀 JsonizeIt
JsonizeIt is a developer utility tool that converts JSON into: • ✅ C# Classes (with nested object support) • ✅ XML • ✅ CSV
It is available as: • 📦 npm package • 🌐 Web application • 💻 Open-source GitHub repository
⸻
🔗 Links
• 🌐 Web Version: https://jsonizeit.com/
• 🌐 Author : https://codewithkhareem.com/
• 📂 GitHub Repository: https://github.com/Khareem23/JsonizeIt
• 📦 npm Package: https://www.npmjs.com/package/jsonizeit⸻
✨ Features
• 🔄 JSON → C# Class conversion
• 🧠 Nested object support
• 📚 Array handling (List)
• 🏷 Nullable type handling
• 📄 JSON → XML conversion
• 📊 JSON → CSV conversion
• ⚡ Lightweight and fast
• 🛠 CLI support
• 🌍 Web-based interface available⸻
📦 Installation (npm)
npm install jsonizeit🧑💻 Usage (Node.js)
const jsonizeit = require("jsonizeit");
const sample = {
name: "John",
age: 30,
isActive: true
};
console.log(jsonizeit.jsonToCSharp(sample, "Person"));
console.log(jsonizeit.jsonToXml(sample));
console.log(jsonizeit.jsonToCsv([sample]));
