forked from sheetjs/sheetjs
SheetJS
86d6a093f0
- README and example cleanup - basic XLSB and ODS write support - flow typecheck for ODS file Note: xlsx.js flow fails: https://github.com/facebook/flow/issues/380 - exposed jszip compression (fixes #220, closes #284) README issues: | id | author | comment | |-----:|:---------------|:---------------------------------------------| | #202 | @sao93859 | closes #202 | | #211 | @alexanderchan | closes #211 corrected examples | | #327 | @cskaandorp | changed saveAs example to match write tests | | #424 | @dskrvk | added note about s2roa h/t @LeonardoPatignio | | #496 | @jimmywarting | closes #496 adapted rABS examples with rAAS | ODS file format issues: | id | author | comment | |-----:|:---------------|:---------------------------------------------| | #148 | @user4815162342| closes #148 h/t @ziacik | | #166 | @paulproteus | closes #166 rudimentary ODS write support | | #177 | @ziacik | closes #177 | | #179 | @ziacik | closes #179 use JSON when available | | #317 | @ziacik | closes #317 | | #328 | @think01 | closes #328 | | #383 | @mdamt | closes #383 duplicate cells should be copied | | #430 | @RB-Lab | closes #430 | | #546 | @lgodard | closes #546 thanks to other changes |
138 lines
4.5 KiB
JavaScript
Executable File
138 lines
4.5 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */
|
|
var n = "xlsx";
|
|
/* vim: set ts=2 ft=javascript: */
|
|
var X = require('../');
|
|
require('exit-on-epipe');
|
|
var fs = require('fs'), program = require('commander');
|
|
program
|
|
.version(X.version)
|
|
.usage('[options] <file> [sheetname]')
|
|
.option('-f, --file <file>', 'use specified workbook')
|
|
.option('-s, --sheet <sheet>', 'print specified sheet (default first sheet)')
|
|
.option('-p, --password <pw>', 'if file is encrypted, try with specified pw')
|
|
.option('-l, --list-sheets', 'list sheet names and exit')
|
|
.option('-o, --output <file>', 'output to specified file')
|
|
.option('-B, --xlsb', 'emit XLSB to <sheetname> or <file>.xlsb')
|
|
.option('-M, --xlsm', 'emit XLSM to <sheetname> or <file>.xlsm')
|
|
.option('-X, --xlsx', 'emit XLSX to <sheetname> or <file>.xlsx')
|
|
.option('-S, --formulae', 'print formulae')
|
|
.option('-j, --json', 'emit formatted JSON (all fields text)')
|
|
.option('-J, --raw-js', 'emit raw JS object (raw numbers)')
|
|
.option('-F, --field-sep <sep>', 'CSV field separator', ",")
|
|
.option('-R, --row-sep <sep>', 'CSV row separator', "\n")
|
|
.option('-n, --sheet-rows <num>', 'Number of rows to process (0=all rows)')
|
|
.option('--sst', 'generate sst')
|
|
.option('--perf', 'do not generate output')
|
|
.option('--all', 'parse everything; XLS[XMB] write as much as possible')
|
|
.option('--dev', 'development mode')
|
|
.option('--read', 'read but do not print out contents')
|
|
.option('-q, --quiet', 'quiet mode');
|
|
|
|
program.on('--help', function() {
|
|
console.log(' Default output format is CSV');
|
|
console.log(' Support email: dev@sheetjs.com');
|
|
console.log(' Web Demo: http://oss.sheetjs.com/js-'+n+'/');
|
|
});
|
|
|
|
program.parse(process.argv);
|
|
|
|
/* see https://github.com/SheetJS/j/issues/4 */
|
|
if(process.version === 'v0.10.31') {
|
|
var msgs = [
|
|
"node v0.10.31 is known to crash on OSX and Linux, refusing to proceed.",
|
|
"see https://github.com/SheetJS/j/issues/4 for the relevant discussion.",
|
|
"see https://github.com/joyent/node/issues/8208 for the relevant node issue"
|
|
];
|
|
msgs.forEach(function(m) { console.error(m); });
|
|
process.exit(1);
|
|
}
|
|
|
|
var filename/*:?string*/, sheetname = '';
|
|
if(program.args[0]) {
|
|
filename = program.args[0];
|
|
if(program.args[1]) sheetname = program.args[1];
|
|
}
|
|
if(program.sheet) sheetname = program.sheet;
|
|
if(program.file) filename = program.file;
|
|
|
|
if(!filename) {
|
|
console.error(n + ": must specify a filename");
|
|
process.exit(1);
|
|
}
|
|
/*:: if(filename) { */
|
|
if(!fs.existsSync(filename)) {
|
|
console.error(n + ": " + filename + ": No such file or directory");
|
|
process.exit(2);
|
|
}
|
|
|
|
var opts = {}, wb/*:?Workbook*/;
|
|
if(program.listSheets) opts.bookSheets = true;
|
|
if(program.sheetRows) opts.sheetRows = program.sheetRows;
|
|
if(program.password) opts.password = program.password;
|
|
if(program.xlsx || program.xlsm || program.xlsb) {
|
|
opts.cellNF = true;
|
|
if(program.output) sheetname = program.output;
|
|
}
|
|
else if(program.formulae);
|
|
else opts.cellFormula = false;
|
|
|
|
if(program.all) {
|
|
opts.cellFormula = true;
|
|
opts.cellNF = true;
|
|
opts.cellStyles = true;
|
|
}
|
|
|
|
if(program.dev) {
|
|
X.verbose = 2;
|
|
opts.WTF = true;
|
|
wb = X.readFile(filename, opts);
|
|
}
|
|
else try {
|
|
wb = X.readFile(filename, opts);
|
|
} catch(e) {
|
|
var msg = (program.quiet) ? "" : n + ": error parsing ";
|
|
msg += filename + ": " + e;
|
|
console.error(msg);
|
|
process.exit(3);
|
|
}
|
|
if(program.read) process.exit(0);
|
|
|
|
/*:: if(wb) { */
|
|
if(program.listSheets) {
|
|
console.log(wb.SheetNames.join("\n"));
|
|
process.exit(0);
|
|
}
|
|
|
|
var wopts = {WTF:opts.WTF, bookSST:program.sst};
|
|
|
|
if(program.xlsx) { X.writeFile(wb, sheetname || (filename + ".xlsx"), wopts); process.exit(0); }
|
|
if(program.xlsm) { X.writeFile(wb, sheetname || (filename + ".xlsm"), wopts); process.exit(0); }
|
|
if(program.xlsb) { X.writeFile(wb, sheetname || (filename + ".xlsb"), wopts); process.exit(0); }
|
|
|
|
var target_sheet = sheetname || '';
|
|
if(target_sheet === '') target_sheet = wb.SheetNames[0];
|
|
|
|
var ws;
|
|
try {
|
|
ws = wb.Sheets[target_sheet];
|
|
if(!ws) throw "Sheet " + target_sheet + " cannot be found";
|
|
} catch(e) {
|
|
console.error(n + ": error parsing "+filename+" "+target_sheet+": " + e);
|
|
process.exit(4);
|
|
}
|
|
|
|
if(program.perf) process.exit(0);
|
|
|
|
var oo = "";
|
|
if(!program.quiet) console.error(target_sheet);
|
|
if(program.formulae) oo = X.utils.get_formulae(ws).join("\n");
|
|
else if(program.json) oo = JSON.stringify(X.utils.sheet_to_row_object_array(ws));
|
|
else if(program.rawJs) oo = JSON.stringify(X.utils.sheet_to_row_object_array(ws,{raw:true}));
|
|
else oo = X.utils.make_csv(ws, {FS:program.fieldSep, RS:program.rowSep});
|
|
|
|
if(program.output) fs.writeFileSync(program.output, oo);
|
|
else console.log(oo);
|
|
/*:: } */
|
|
/*:: } */
|