33 lines
902 B
TypeScript
33 lines
902 B
TypeScript
// Simple example to add text to a document
|
|
|
|
import * as fs from "fs";
|
|
import { Document, Packer, Paragraph, Tab, TextRun } from "docx";
|
|
|
|
const doc = new Document({
|
|
sections: [
|
|
{
|
|
properties: {},
|
|
children: [
|
|
new Paragraph({
|
|
children: [
|
|
new TextRun("Hello World"),
|
|
new TextRun({
|
|
text: "Foo Bar",
|
|
bold: true,
|
|
size: 40,
|
|
}),
|
|
new TextRun({
|
|
children: [new Tab(), "Github is the best"],
|
|
bold: true,
|
|
}),
|
|
],
|
|
}),
|
|
],
|
|
},
|
|
],
|
|
});
|
|
|
|
Packer.toBuffer(doc).then((buffer) => {
|
|
fs.writeFileSync("My Document.docx", buffer);
|
|
});
|