Package Exports
- @groupdocs/groupdocs.comparison
- @groupdocs/groupdocs.comparison/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@groupdocs/groupdocs.comparison) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Powerful document comparison API for Node.js (powered by Java) to diff 50+ document and image formats, including Microsoft Office and OpenDocument types, PDF documents, and common raster images (TIFF, JPEG, GIF, PNG, BMP). Retrieve changes in a convenient format with line-by-line comparison of content, paragraphs, characters, styles, shapes, and positions.
Quick links
Key Features
- Compare files or folders and detect differences in similar documents.
- Visually represent, list, approve, or reject changes.
- Popular document formats such as PDF, DOCX, PPTX, and XLSX are supported.
Supported Formats
Microsoft Office Formats
- Microsoft Word: DOC, DOCM, DOCX, DOT, DOTM, DOTX, RTF
- Microsoft Excel: XLS, XLT, XLSX, XLTM, XLSB, XLSM
- Microsoft PowerPoint: POT, POTX, PPS, PPSX, PPTX, PPT
- Microsoft OneNote: ONE
- Microsoft Visio: VSDX, VSD, VSS, VST, VDX
Other Supported Formats
- OpenDocument: ODT, ODP, OTP, ODS, OTT
- Portable: PDF
- AutoCAD: DWG, DXF
- Email: EML, EMLX, MSG
- Images: BMP, GIF, JPG, JPEG, PNG, DICOM
- Web: HTM, HTML, MHT, MHTML
- Text: TXT, CSV
- eBook: MOBI, DJVU
Getting Started
Prerequisites
- Node.js (LTS recommended)
- Java Runtime Environment (JRE) 8 or later
- Windows, Linux, or macOS
Installation
To install the package, check the System Requirements and Installation documentation topics for platform-specific instructions.
Use cases
Here are some typical use cases:
Compare files
This example shows how to compare two DOCX files and save a diff file.
'use strict';
const groupdocs = require('@groupdocs/groupdocs.comparison');
// Apply license, required for non-evaluation usage
const license = new groupdocs.License();
license.setLicense("GroupDocs.Comparison.lic");
// Compare documents
const comparer = new groupdocs.Comparer("proposal_v1.docx");
comparer.add("proposal_v2.docx");
comparer.compare("proposal_diff.docx");
// Exit
process.exit(0);The output proposal_diff.docx file shows changes made in the second version of the file and lists all the changes on an additional summary page.
Get changes
'use strict';
const groupdocs = require('@groupdocs/groupdocs.comparison');
// Apply license, required for non-evaluation usage
const license = new groupdocs.License();
license.setLicense("GroupDocs.Comparison.lic");
// Compare documents
const comparer = new groupdocs.Comparer("proposal_v1.docx");
comparer.add("proposal_v2.docx");
comparer.compare();
// Print out changes
const changes = comparer.getChanges();
for (let index = 0; index < changes.length; index++) {
const change = changes[index];
const page = change.getPageInfo().getPageNumber();
const type = change.getType().name();
const text = (change.getText() || "").trim();
const src = (change.getSourceText() || "").trim();
const tgt = (change.getTargetText() || "").trim();
console.log(`[Page ${page}] ${type} "${text}", "${src}" -> "${tgt}"`);
}
// Exit
process.exit(0);This code example compares two DOCX files and outputs details on changes, such as page, change type, source, and changed text. See the expected console output:
[Page 3] INSERTED "7", "$12 per user/month" -> "$7 per user/month"
[Page 3] DELETED "12", "$12 per user/month" -> "$7 per user/month"
[Page 3] DELETED "5", "$25 per user/month" -> "$20 per user/month"
[Page 3] INSERTED "0", "$25 per user/month" -> "$20 per user/month"Accept or reject changes
This code example shows how to accept or reject changes between two versions of the same document.
'use strict';
const java = require('java');
const groupdocs = require('@groupdocs/groupdocs.comparison');
// Apply license, required for non-evaluation usage
const license = new groupdocs.License()
license.setLicense("GroupDocs.Comparison.lic");
// Compare documents
const comparer = new groupdocs.Comparer("proposal_v1.docx");
comparer.add("proposal_v2.docx");
comparer.compare();
// Accept all chanes
const changes = comparer.getChanges();
for (let index = 0; index < changes.length; index++) {
const change = changes[index];
change.setComparisonAction(groupdocs.ComparisonAction.ACCEPT); // or REJECT
}
// Apply changes and save result
const changeArray = java.newArray('com.groupdocs.comparison.result.ChangeInfo', changes);
const saveOptions = new groupdocs.ApplyChangeOptions(changeArray);
comparer.applyChanges("proposal_accepted_changes.docx", saveOptions);
// Exit
process.exit(0);This example accepts all the changes and saves the output file with all changes accepted.
Troubleshooting
- Download during installation fails (corporate proxy/firewall): Ensure your environment allows downloading the required JAR during
postinstall. If needed, download the file manually to thelib/directory as described in the Installation Guide. - Java not found: Make sure Java (JRE 8+) is installed and available on your system
PATH. - Permission issues when writing output files: Verify your process has write access to the target directory.
Licensing
For testing without trial limitations, you can request a 30-day Temporary License:
- Visit the Get a Temporary License page
- Follow the instructions to request your temporary license
- Copy the license file and apply it using the code example
'use strict';
const groupdocs = require('@groupdocs/groupdocs.comparison');
// Apply license
const license = new groupdocs.License();
license.setLicense("GroupDocs.Comparison.lic");This product is licensed under the GroupDocs End User License Agreement (EULA). For pricing information, visit the GroupDocs.Comparison for Node.js via Java pricing page.
Support
GroupDocs provides unlimited free technical support for all of its products. Support is available to all users, including evaluation. The support is provided at Free Support Forum, Paid Support Helpdesk and Paid Consulting.
Free Support Forum
The GroupDocs Free Support Forum is available to all users and provides:
- Direct access to the GroupDocs.Total development team
- Community-driven support and knowledge sharing
- No time limitations on support requests
- Access to historical solutions and discussions
Paid Support Helpdesk
The Paid Support Helpdesk offers:
- Higher priority response times
- Dedicated support team
- Extended support hours
- Priority issue resolution
Paid Consulting
We can work together with you on your project and develop a part or complete application. If you need new features in the existing GroupDocs product or to create API for new file formats, send us a request at consulting.groupdocs.com/contact.
Home | Product Home | Documentation | Blog | Code Samples | Free Support | Temporary License | Pricing