Files
docx-js/demo/demo5.js

14 lines
334 B
JavaScript
Raw Normal View History

2018-01-09 21:54:48 +00:00
const docx = require('../build');
var doc = new docx.File();
2018-01-16 00:43:00 +00:00
var paragraph = new docx.Paragraph("Hello World");
doc.addParagraph(paragraph);
2018-01-09 21:54:48 +00:00
2018-01-16 00:43:00 +00:00
const image = doc.createImage("./demo/image1.jpeg");
2018-01-09 21:54:48 +00:00
var exporter = new docx.LocalPacker(doc);
exporter.pack('My Document');
console.log('Document created successfully at project root!');