Available Now: Explore our latest release with enhanced accessibility and powerful IDP features
By Andrey Safonov | 2023 Apr 29
5 min
Tags
tutorial
docx editor
docx
javascript
next.js
This guide will go over every step needed to integrate a ready-to-use Next.js DOCX Editor, enabling the crafting and modification of DOCX documents directly within your web app and browser, devoid of server-side components, Microsoft Office, or LibreOffice dependencies.
The Next.js DOCX Editor boasts a range of widely-used word processing capabilities, which renders it perfect for all basic DOCX editing, handling, and review workflows.
Apryse DOCX Editor offers you secure client-side capabilities throughout: All Word files are modified directly in the browser, allowing you to open and store DOCX files from local storage or a URL, for example an AWS S3 Bucket. Upon saving, the produced blob can be returned to your bucket, saved as an updated version, or directly downloaded in either native DOCX format, or converted to PDF.
To explore the importance of native DOCX editing for both users and developers, check out our launch blog.
Now let’s get our hands dirty: Read on for the step-by-step How-to guide, and/or watch the How-to video embedded below.
DOCX Editor is built on top of Apryse’sWebViewer. WebViewer offers viewing and editing not just of DOCX documents but also PDFs, images, CAD, video, and many other formats.
To install WebViewer in your Angular application, you can either do so by cloning our GitHub Next.js sample repo or by following our guide.
If you are installing through npm (node package manager), you can simply run:
npm i @pdftron/webviewer
WebViewer comes with a free trial for 7 days. If you would like to extend the trial duration, you can generate a free trial key after signing up at https://dev.apryse.com.
In trial mode, all features are available except a watermark on output documents.
Once you have WebViewer up and running, go to the constructor of WebViewer and pass the option to enable Office editing:
WebViewer({
enableOfficeEditing: true,
}, viewerElement)
Once you have that, restart your app and you should see DOCX editor.
To load an existing DOCX document in your Next.js web app, you can do so either through initial document property:
WebViewer({
initialDoc: 'https://myserver.com/myfile.docx',
enableOfficeEditing: true,
}, document.getElementById('viewer'));
or through load document API:
instance.UI.loadDocument(
'https://myserver.com/myfile.docx',
{
filename: 'myfile.docx',
enableOfficeEditing: true,
});
To save the edited or newly created DOCX, use the getFileData
API:
const doc = documentViewer.getDocument();
const data = await doc.getFileData();
const arr = new Uint8Array(data);
const blob = new Blob([arr], { type: 'application/pdf' });
// Add code for handling Blob here
Discover how to create a JavaScript-based DOCX editor with client-side capabilities. Learn to build, edit, and save documents efficiently in this comprehensive guide.
With the DOCX editor now active in your Next.js web application, you can explore methods to tailor its appearance and feel.
Should you face challenges or come across errors during setup, we are happy to chat over on Discord.
For pricing queries, kindly get in touch with our sales department.
Tags
tutorial
docx editor
docx
javascript
next.js
Related Products
Share this post
PRODUCTS
Enterprise
Small Business
Popular Content