
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
docx-builder
Advanced tools
An NPM module for creating and/or merging DOCX files.
Using npm do:
npm install docx-builder
View in npm
var builder = require('docx-builder');
var docx = new builder.Document();
//SET THE HEADER
docx.beginHeader();
docx.insertText("This is the header");
docx.endHeader();
//SET THE FOOTER
docx.beginFooter();
docx.insertText("This is the footer");
docx.endFooter();
//COMMON OPERATIONS
docx.setBold();
docx.unsetBold();
docx.setItalic();
docx.unsetItalic();
docx.setUnderline();
docx.unsetUnderline();
docx.setFont("Arial");
docx.setSize(40);
docx.rightAlign();
docx.centerAlign();
docx.leftAlign();
docx.insertText("Hello");
//INSERT A TABLE
docx.beginTable({ borderColor: "red", borderSize: 20 });
docx.insertRow();
docx.setItalic();
docx.setUnderline();
docx.insertText("ID");
docx.nextColumn();
docx.insertText("Username");
docx.nextRow();
docx.insertText("1");
docx.nextColumn();
docx.insertText("raulb");
docx.endTable();
//INSERT EXTERNAL FILES
docx.insertDocxSync(__dirname+"/test.docx");
docx.insertPageBreak();
docx.insertDocx(__dirname+"/test2.docx", function(err){
if(err) console.log(err);
});
//SAVE THE DOCX FILE
docx.save(__dirname + "/output.docx", function(err){
if(err) console.log(err);
});
A common requirement is to merge two or more .docx files into one. For that, just call
insertDocxSync
or insertDocx
to append the content of your .docx files.
var builder = require('docx-builder');
var docx = new builder.Document();
//You can also do this asynchronously using the insertDocx method.
docx.insertDocxSync(__dirname+"/test1.docx");
docx.insertDocxSync(__dirname+"/test2.docx");
docx.insertDocxSync(__dirname+"/test3.docx");
//SAVING THE DOCX FILE
docx.save(__dirname + "/output.docx", function(err){
if(err) console.log(err);
});
FAQs
Easily create or merge DOCX files from Node.js
The npm package docx-builder receives a total of 59 weekly downloads. As such, docx-builder popularity was classified as not popular.
We found that docx-builder demonstrated a not healthy version release cadence and project activity because the last version was released 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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.