Files
docx-js/demo/19-export-to-base64.ts
2023-06-05 00:33:43 +01:00

31 lines
835 B
TypeScript

// Export to base64 string - Useful in a browser environment.
import * as fs from "fs";
import { Document, Packer, Paragraph, Tab, TextRun } from "docx";
const doc = new Document({
sections: [
{
children: [
new Paragraph({
children: [
new TextRun("Hello World"),
new TextRun({
text: "Foo",
bold: true,
}),
new TextRun({
children: [new Tab(), "Bar"],
bold: true,
}),
],
}),
],
},
],
});
Packer.toBase64String(doc).then((str) => {
fs.writeFileSync("My Document.docx", str);
});