
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
wordxml-builder
Advanced tools
Librería TypeScript para construir documentos XML compatibles con Microsoft Word
Librería TypeScript para construir documentos XML compatibles con Microsoft Word.
npm install wordxml-builder
import { WordXMLBuilder } from 'wordxml-builder';
const builder = new WordXMLBuilder();
builder.addParagraph('Este es un párrafo de ejemplo');
const xmlContent = builder.getContent();
wordxml-builder/
├── src/ # Código fuente
│ ├── index.ts # Punto de entrada principal
│ ├── types/ # Definiciones de tipos
│ ├── builders/ # Clases constructoras
│ └── utils/ # Utilidades
├── dist/ # Código compilado (generado)
├── tests/ # Pruebas unitarias
├── docs/ # Documentación
└── examples/ # Ejemplos de uso
npm install
npm run build
npm run lint
npm run format
npm test
package.json
siguiendo Semantic Versioningnpm publish
Este proyecto sigue la metodología GitFlow para el control de versiones:
main
: Código en produccióndevelop
: Código en desarrollofeature/*
: Nuevas característicasbugfix/*
: Corrección de erroreshotfix/*
: Correcciones urgentes en producciónrelease/*
: Preparación de releasesCrear una rama desde develop
:
git checkout -b feature/nueva-caracteristica develop
Desarrollar y hacer commits:
git commit -m "feat: agregar nueva característica"
Fusionar con develop
:
git checkout develop
git merge feature/nueva-caracteristica
Crear release:
git checkout -b release/1.0.0 develop
Fusionar con main
y develop
:
git checkout main
git merge release/1.0.0
git checkout develop
git merge release/1.0.0
Usamos Conventional Commits:
feat:
Nueva característicafix:
Corrección de errordocs:
Cambios en documentaciónstyle:
Cambios de formatorefactor:
Refactorización de códigotest:
Agregar o corregir pruebaschore:
Actualización de tareas, configuración, etc.Seguimos Semantic Versioning:
MAJOR
: Cambios incompatibles con versiones anterioresMINOR
: Nuevas características compatiblesPATCH
: Correcciones de errores compatiblesEjemplo: 1.2.3
Este proyecto está bajo la Licencia MIT - ver el archivo LICENSE para más detalles.
Las contribuciones son bienvenidas. Por favor, lee CONTRIBUTING.md para detalles sobre nuestro código de conducta y el proceso para enviar pull requests.
FAQs
Librería TypeScript para construir documentos XML compatibles con Microsoft Word
The npm package wordxml-builder receives a total of 6 weekly downloads. As such, wordxml-builder popularity was classified as not popular.
We found that wordxml-builder demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.