edumanagerpro2/node_modules/fast-xml-builder
Sidney 980b15905b fix: proxy de imagens MinIO e normalização de URLs para fotos de alunos 2026-04-21 21:50:22 -03:00
..
lib fix: proxy de imagens MinIO e normalização de URLs para fotos de alunos 2026-04-21 21:50:22 -03:00
src fix: proxy de imagens MinIO e normalização de URLs para fotos de alunos 2026-04-21 21:50:22 -03:00
CHANGELOG.md fix: proxy de imagens MinIO e normalização de URLs para fotos de alunos 2026-04-21 21:50:22 -03:00
LICENSE fix: proxy de imagens MinIO e normalização de URLs para fotos de alunos 2026-04-21 21:50:22 -03:00
README.md fix: proxy de imagens MinIO e normalização de URLs para fotos de alunos 2026-04-21 21:50:22 -03:00
package.json fix: proxy de imagens MinIO e normalização de URLs para fotos de alunos 2026-04-21 21:50:22 -03:00

README.md

fast-xml-builder

Build XML from JSON

XML Builder was the part of fast-xml-parser for years. But considering that any bug in parser may false-alarm the users who are only using builder, we have decided to split it into a separate package.

Installation

npm install fast-xml-builder

Usage

import XMLBuilder from 'fast-xml-builder';

const builder = new XMLBuilder();
const xml = builder.build({ name: 'value' });

fast-xml-builder fully support the response generated by fast-xml-parser. So you can use the maximum options as you are using for fast-xml-parser like preserveOrder, ignoreAttributes, attributeNamePrefix, textNodeName, cdataTagName, cdataPositionChar, format, indentBy, suppressEmptyNode and many more. Any change in parser will reflect here time to time.