
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.
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 19 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.
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.