Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Parse Microsoft Office files in Node.JS

Tags:

I'm working on a web application where users can upload Microsoft Office Document files. Right now, our server is running Node.JS with Express.js and we're hosted on Heroku. Because of this, I don't think that I can install programs such as abiword or catdoc. I can handle the file uploads, but can't parse the contents of the document.

How can I read the contents of the doc file? The information will then be put into a database. It'd be nice to preserve basic formatting (bold, italic, underline), but not essential.

like image 644
arknave Avatar asked Oct 15 '12 19:10

arknave


2 Answers

While there don't seem to be anything you can get with NPM that will do Word directly, you might be able to use a REST API to request it via another cloud service. For example Saaspose (they of the famous Aspose tools) have public API for Word, Excel, PDF, and others. They list node.js, javascript, and Heroku support on their page.

EDIT:

I see that Saaspose is now called Aspose for Cloud

Another API that claims something similar is Doxument

like image 148
explunit Avatar answered Oct 17 '22 19:10

explunit


Office package: npm install office seems to provide at least part of the answer. I use it to read Excel files, so far have not tried any Word docs.

like image 30
Deer Hunter Avatar answered Oct 17 '22 19:10

Deer Hunter