32 lines
925 B
TypeScript
32 lines
925 B
TypeScript
![]() |
// Simple example to add text to a document
|
||
|
// Import from 'docx' rather than '../build' if you install from npm
|
||
|
import * as fs from "fs";
|
||
|
import { Document, Packer, Paragraph, TextRun } from "../build";
|
||
|
|
||
|
const doc = new Document({
|
||
|
sections: [
|
||
|
{
|
||
|
properties: {},
|
||
|
children: [
|
||
|
new Paragraph({
|
||
|
children: [
|
||
|
new TextRun("Hello World"),
|
||
|
new TextRun({
|
||
|
text: "Foo Bar",
|
||
|
bold: true,
|
||
|
}),
|
||
|
new TextRun({
|
||
|
text: "\tGithub is the best",
|
||
|
bold: true,
|
||
|
}),
|
||
|
],
|
||
|
}),
|
||
|
],
|
||
|
},
|
||
|
],
|
||
|
});
|
||
|
|
||
|
Packer.toStream(doc).then((stream) => {
|
||
|
stream.pipe(fs.createWriteStream("My Document.docx"));
|
||
|
});
|