2018-01-25 01:47:47 +00:00
|
|
|
const docx = require("../build");
|
|
|
|
|
|
|
|
var doc = new docx.File(undefined, {
|
|
|
|
orientation: "landscape",
|
|
|
|
});
|
|
|
|
|
|
|
|
var paragraph = new docx.Paragraph("Hello World");
|
|
|
|
|
|
|
|
doc.addParagraph(paragraph);
|
|
|
|
|
|
|
|
var exporter = new docx.LocalPacker(doc);
|
|
|
|
exporter.pack("My Document");
|
|
|
|
|
2018-01-30 01:16:48 +00:00
|
|
|
console.log("Document created successfully at project root!");
|