Would you like to clone this notebook?

When you clone a notebook you are able to make changes without affecting the original notebook.

Cancel

DOCX Demo 1

node v10.24.1
version: 5.0.3
endpointsharetweet
const docx = require("docx@5.0.2") const express = require("@runkit/runkit/express-endpoint/1.0.0"); const app = express(exports); const { Document, Packer, Paragraph, TextRun } = docx; app.get("/", async (req, res) => { const doc = new Document(); doc.addSection({ 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, }), ], }), ], }); const b64string = await Packer.toBase64String(doc); res.setHeader('Content-Disposition', 'attachment; filename=My Document.docx'); res.send(Buffer.from(b64string, 'base64')); })
Created from: https://runkit.com/docs/endpoint
Loading…

2 comments

  • posted 3 years ago by timgarciaa
    How to convert base64 string back on frontend to download?
  • posted 10 months ago by 6486b9777002de0012a1c057
    Anonmous

sign in to comment