
Research
/Security News
Malicious npm Packages Target WhatsApp Developers with Remote Kill Switch
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
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 4 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.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.