18 lines
532 B
TypeScript
18 lines
532 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";
|
||
|
|
||
|
var doc = new Document();
|
||
|
var paragraph = new Paragraph();
|
||
|
var link = doc.createHyperlink('http://www.example.com', 'Hyperlink');
|
||
|
link.bold();
|
||
|
paragraph.addHyperLink(link);
|
||
|
doc.addParagraph(paragraph);
|
||
|
|
||
|
const packer = new Packer();
|
||
|
|
||
|
packer.toBuffer(doc).then((buffer) => {
|
||
|
fs.writeFileSync("My Document.docx", buffer);
|
||
|
});
|