Skip to content

Commit

Permalink
parse spreadsheets
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitriy Kiyatkin committed Aug 5, 2012
1 parent c26aca7 commit 17d7bca
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
15 changes: 14 additions & 1 deletion README.md
@@ -1,4 +1,17 @@
node-office
===========

Parse office documents (doc, docx, xls, etc..)
Parse office documents (odt, doc, docx, ods, xls, etc..)

## Requirements:

xlhtml, unoconv

## Examples:

```javascript
var office = require('office');
office.parse('spreadsheet.ods', function(err, data) {
console.log(data.sheets);
});
```
7 changes: 7 additions & 0 deletions package.json
Expand Up @@ -3,6 +3,13 @@
"description": "Parse office documents (doc, docx, xls, etc..)",
"version": "0.0.1",
"author": "Dmitriy Kiyatkin <d.kiyatkin@itlf.ru>",
"dependencies": {
"xml2json": ">=0.2.4",
"temp": ">=0.4.0"
},
"devDependencies": {
"nodeunit": ">=0.7.4"
},
"keywords": [
"doc", "xls", "docx", "xlsx", "odt"
],
Expand Down

0 comments on commit 17d7bca

Please sign in to comment.