# Word Document Editing and Download - WeWeb Integration

**URL:** https://community.weweb.io/t/word-document-editing-and-download-weweb-integration/20637
**Category:** How do I?
**Tags:** design
**Created:** [January 15, 2026, 6:14pm UTC](https://community.weweb.io/t/word-document-editing-and-download-weweb-integration/20637 "2026-01-15T18:14:42Z")
**Posts on this page:** 5
**Page:** 1

<div class="post-metadata">

### Author: ![emdiemeric](https://avatars.discourse-cdn.com/v4/letter/e/e9bcb4/32.png) [@emdiemeric](https://community.weweb.io/u/emdiemeric)
#### Post date: [January 15, 2026, 6:14pm UTC](https://community.weweb.io/t/word-document-editing-and-download-weweb-integration/20637/1 "2026-01-15T18:14:42Z")

</div>

### Hi All,

Has anyone done any work with Word Documents? Such as having an embedded Editor and also being able to download the files in docx format?

Basically, my requirement would be to allow users to edit template documents that I host on supabase, and then for them to download a personalised version of that.

Some kind of custom library integration, probably?

thanks.

---

<div class="post-metadata">

### Author: ![Agustin\_Carozo](https://sea2.discourse-cdn.com/flex016/user_avatar/community.weweb.io/agustin_carozo/32/13231_2.png) [@Agustin\_Carozo](https://community.weweb.io/u/Agustin_Carozo)
#### Post date: [January 16, 2026, 12:43pm UTC](https://community.weweb.io/t/word-document-editing-and-download-weweb-integration/20637/2 "2026-01-16T12:43:13Z")

</div>

Hi @emdiemeric 👋

I don’t recall having seen someone building this functionality, but you could try 2 approaches.

Either you use a tool you can embed directly or you could try a tool or npm package that translates code templates into the files you require.

Couple of tools I found:

- [Syncfusion JavaScript DOCX Editor SDK](https://www.syncfusion.com/docx-editor-sdk/javascript-docx-editor)
- [Apryse WebViewer DOCX Editor](https://apryse.com/capabilities/docx-editor)
- [Docxtemplater](https://docxtemplater.com/)

---

<div class="post-metadata">

### Author: ![Guillenius](https://sea2.discourse-cdn.com/flex016/user_avatar/community.weweb.io/guillenius/32/9570_2.png) [@Guillenius](https://community.weweb.io/u/Guillenius)
#### Post date: [January 17, 2026, 3:51pm UTC](https://community.weweb.io/t/word-document-editing-and-download-weweb-integration/20637/3 "2026-01-17T15:51:31Z")

</div>

hi therer, I was in a project like that and my solution was:

- create a richtext with html format.
- take the value from the document from docx in xano.
- save and modify any value from the richtext component.
- download the document again about the [https://www.npmjs.com/package/html-to-docx](https://www.npmjs.com/package/html-to-docx) library.

regards.

---

<div class="post-metadata">

### Author: ![Profound5753](https://sea2.discourse-cdn.com/flex016/user_avatar/community.weweb.io/profound5753/32/6870_2.png) [@Profound5753](https://community.weweb.io/u/Profound5753)
#### Post date: [January 19, 2026, 9:42pm UTC](https://community.weweb.io/t/word-document-editing-and-download-weweb-integration/20637/4 "2026-01-19T21:42:20Z")

</div>

I’m using Tiptap. I’ve used it several times in multiple ways with a custom coded component. Happy to help you with yours too. DM me if interested.

---

<div class="post-metadata">

### Author: ![Peer](https://avatars.discourse-cdn.com/v4/letter/p/e9bcb4/32.png) [@Peer](https://community.weweb.io/u/Peer)
#### Post date: [January 21, 2026, 10:36am UTC](https://community.weweb.io/t/word-document-editing-and-download-weweb-integration/20637/5 "2026-01-21T10:36:46Z")

</div>

Using GPT do generate a Custom Code I had real issues with docX because the formatting seems to be a a little bit tricky. The exported docX files didnt worked in drive or even word … My solutuin: It was very easy to build a proper export for doc files - they work everywhere. SO if you do not really require docX this might be a solution for you, too.
