Use Node library to split Word file via REST API. Easily split two or more Word file into parts using JavaScript.
This JavaScript library provides Node developers with the ability to work with a Word split function using REST API. It allows you to split one Word document into several smaller files online in JavaScript. For example, you may need to email a few pages from your Word document, or you may want to show a customer only a part of your Word file. All this can be done through the Word splitting functionality in JavaScript code.
Various methods can be used for splitting a Word file: 'by page', 'by page ranges', 'by headings', 'by section break'. Just load the original Word document and choose the method you need. Make sure your Word document uses the required heading styles or contains section breaks if you want to split your Word file according to these criteria using JavaScript code. After splitting a Word document you can export the result as separate document pages or smaller files.
All Word document splitting is performed in the Cloud on Aspose web servers with maximum speed and in compliance with all security standards. Our JavaScript library is designed to create Word processing applications and is based on client-server interaction via REST API.
If you have questions on how to split a Word document into multiple documents or how to extract Word pages according to specified parameters, try our Splitter online and export the result into a convenient document format:
import * as fs from "fs";
const wordsApi = new WordsApi("####-####-####-####-####", "##################");
const doc = fs.createReadStream("Input.docx");
const request = new model.SplitDocumentOnlineRequest({
document: doc,
format: "docx",
zipOutput: true
});
const zippedPages = wordsApi.splitDocumentOnline(request)
.then((splitDocumentResult) => {
console.log("Result of SplitDocumentOnline: ", splitDocumentResult);
});
Install 'Aspose.Words Cloud SDK for Node.js' using NPM package manager. Run npm install asposewordscloud --save from the command line to install the SDK via the NPM package manager. As an alternative, you can manually clone Aspose.Words Cloud SDK for Node.js source code from GitHub and use it in your project. Please follow these Instructions to quickly get the necessary security credentials and access our REST API.
Refer to the Repository Documentation to see more details.