• This repository has been archived on 05/Dec/2017
  • Stars
    star
    345
  • Rank 118,243 (Top 3 %)
  • Language
    JavaScript
  • License
    Other
  • Created over 10 years ago
  • Updated over 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

โŒ Multi-format spreadsheet CLI (now merged in http://github.com/sheetjs/js-xlsx )

J

NOTE: this library / tool is a relic from a time when the SheetJS Spreadsheet Parsing and Writing libraries were separate entities. They have been unified in the js-xlsx project, xlsx on NPM. New projects should be using that library directly.

Simple data wrapper that attempts to wrap SheetJS libraries to provide a uniform way to access data from Excel and other spreadsheet files:

Excel files are parsed based on the content (not by extension). For example, CSV files can be renamed to .XLS and excel will do the right thing.

Supported Formats:

Format Read Write
Excel Worksheet/Workbook Formats :-----: :-----:
Excel 2007+ XML Formats (XLSX/XLSM) โญ• โญ•
Excel 2007+ Binary Format (XLSB BIFF12) โญ• โญ•
Excel 2003-2004 XML Format (XML "SpreadsheetML") โญ• โญ•
Excel 97-2004 (XLS BIFF8) โญ• โญ•
Excel 5.0/95 (XLS BIFF5) โญ• โญ•
Excel 4.0 (XLS/XLW BIFF4) โญ•
Excel 3.0 (XLS BIFF3) โญ•
Excel 2.0/2.1 (XLS BIFF2) โญ• โญ•
Excel Supported Text Formats :-----: :-----:
Delimiter-Separated Values (CSV/TXT) โญ• โญ•
Data Interchange Format (DIF) โญ• โญ•
Symbolic Link (SYLK/SLK) โญ• โญ•
Lotus Formatted Text (PRN) โญ• โญ•
UTF-16 Unicode Text (TXT) โญ• โญ•
Other Workbook/Worksheet Formats :-----: :-----:
OpenDocument Spreadsheet (ODS) โญ• โญ•
Flat XML ODF Spreadsheet (FODS) โญ• โญ•
Uniform Office Format Spreadsheet (ๆ ‡ๆ–‡้€š UOS1/UOS2) โญ•
dBASE II/III/IV / Visual FoxPro (DBF) โญ• โญ•
Lotus 1-2-3 (WKS/WK1/WK2/WK3/WK4/123) โญ•
Quattro Pro Spreadsheet (WQ1/WQ2/WB1/WB2/WB3/QPW) โญ•
Other Common Spreadsheet Output Formats :-----: :-----:
HTML Tables โญ• โญ•
Rich Text Format tables (RTF) โญ•
Ethercalc Record Format (ETH) โญ• โญ•
Markdown Tables โญ•
XML Data (XML) โญ•

circo graph of format support

Installation

$ npm install -g j

Node Library

var J = require('j');

J.readFile(filename) opens file specified by filename and returns an array whose first object is the parsing object (XLS or XLSX) and whose second object is the parsed file.

J.utils has various helpers that expect an array like those from readFile:

Format utility function
Excel 2007+ XML Formats (XLSX/XLSM) to_xlsx/to_xlsm
Excel 2007+ Binary Format (XLSB BIFF12) to_xlsb
Excel 2.0/2.1 (XLS BIFF2) to_biff2
Delimiter-Separated Values (CSV/TSV/DSV) to_csv/to_dsv
Data Interchange Format (DIF) to_dif
Symbolic Link (SYLK/SLK) to_sylk
OpenDocument Spreadsheet (ODS) to_ods
Flat XML ODF Spreadsheet (FODS) to_fods
HTML Tables to_html
Markdown Tables to_md
XML Data (XML) to_xml
Ethercalc Record Format (ETH) to_socialcalc
JSON Row Objects to_json
List of Formulae to_formulae

CLI Tool

The node module ships with a binary j which has a help message:

$ j --help

  Usage: j.njs [options] <file> [sheetname]

  Options:

    -h, --help               output usage information
    -V, --version            output the version number
    -f, --file <file>        use specified workbook (- for stdin)
    -s, --sheet <sheet>      print specified sheet (default first sheet)
    -N, --sheet-index <idx>  use specified sheet index (0-based)
    -p, --password <pw>      if file is encrypted, try with specified pw
    -l, --list-sheets        list sheet names and exit
    -o, --output <file>      output to specified file
    -B, --xlsb               emit XLSB to <sheetname> or <file>.xlsb
    -M, --xlsm               emit XLSM to <sheetname> or <file>.xlsm
    -X, --xlsx               emit XLSX to <sheetname> or <file>.xlsx
    -Y, --ods                emit ODS  to <sheetname> or <file>.ods
    -8, --xls                emit XLS  to <sheetname> or <file>.xls (BIFF8)
    -5, --biff5              emit XLS  to <sheetname> or <file>.xls (BIFF5)
    -2, --biff2              emit XLS  to <sheetname> or <file>.xls (BIFF2)
    -6, --xlml               emit SSML to <sheetname> or <file>.xls (2003 XML)
    -T, --fods               emit FODS to <sheetname> or <file>.fods (Flat ODS)
    -S, --formulae           emit list of values and formulae
    -j, --json               emit formatted JSON (all fields text)
    -J, --raw-js             emit raw JS object (raw numbers)
    -A, --arrays             emit rows as JS objects (raw numbers)
    -H, --html               emit HTML to <sheetname> or <file>.html
    -D, --dif                emit DIF  to <sheetname> or <file>.dif (Lotus DIF)
    -U, --dbf                emit DBF  to <sheetname> or <file>.dbf (MSVFP DBF)
    -K, --sylk               emit SYLK to <sheetname> or <file>.slk (Excel SYLK)
    -P, --prn                emit PRN  to <sheetname> or <file>.prn (Lotus PRN)
    -E, --eth                emit ETH  to <sheetname> or <file>.eth (Ethercalc)
    -t, --txt                emit TXT  to <sheetname> or <file>.txt (UTF-8 TSV)
    -r, --rtf                emit RTF  to <sheetname> or <file>.txt (Table RTF)
    -x, --xml                emit XML
    -m, --markdown           emit markdown table
    -F, --field-sep <sep>    CSV field separator
    -R, --row-sep <sep>      CSV row separator
    -n, --sheet-rows <num>   Number of rows to process (0=all rows)
    --sst                    generate shared string table for XLS* formats
    --compress               use compression when writing XLSX/M/B and ODS
    --read                   read but do not generate output
    --all                    parse everything; write as much as possible
    --dev                    development mode
    -q, --quiet              quiet mode

License

Please consult the attached LICENSE file for details. All rights not explicitly granted by the Apache 2.0 license are reserved by the Original Author.

Build Status

Coverage Status

NPM Downloads

Dependencies Status

ghit.me

Analytics

Using J for diffing spreadsheet files

Using git textconv, you can use J to generate more meaningful diffs!

One-time configuration (misc/gitdiff.sh):

#!/bin/bash

# Define a sheetjs diff type that uses j
git config --global diff.sheetjs.textconv "j"

# Configure a user .gitattributes file that maps the xls{,x,m} files
touch ~/.gitattributes
cat <<EOF >>~/.gitattributes
*.xls diff=sheetjs
*.xlsb diff=sheetjs
*.xlsm diff=sheetjs
*.xlsx diff=sheetjs
*.XLS diff=sheetjs
*.XLSB diff=sheetjs
*.XLSM diff=sheetjs
*.XLSX diff=sheetjs
EOF

# Set the .gitattributes to be used for all repos on the system:
git config --global core.attributesfile '~/.gitattributes'

If you just want to compare formulae (for example, in a sheet using NOW):

git config --global diff.sheetjs.textconv "j -S"

NOTE: There are some known issues regarding global modules in Windows. The best bet is to npm install j in your git directory before diffing.

More Repositories

1

sheetjs

๐Ÿ“— SheetJS Spreadsheet Data Toolkit -- New home https://git.sheetjs.com/SheetJS/sheetjs
JavaScript
33,614
star
2

js-word

โœ’๏ธ Word Processing Document Library
Rich Text Format
1,302
star
3

js-crc32

๐ŸŒ€ JS standard CRC-32 and CRC32C implementation
Python
330
star
4

SheetJS.github.io

:goberserk: SheetJS Spreadsheet Parser/Writer tests and demos
HTML
262
star
5

printj

๐Ÿ“œ sprintf for JS
JavaScript
196
star
6

test_files

๐Ÿ“š SheetJS Test Files (XLS/XLSX/XLSB and other spreadsheet formats)
HTML
162
star
7

ssf

๐Ÿ“ Spreadsheet Number Formatter
JavaScript
157
star
8

js-codepage

๐Ÿ’ฑ Codepages for JS
JavaScript
147
star
9

js-adler32

โ˜‘๏ธ ADLER-32 checksum
Python
137
star
10

js-ppt

Pure JS PowerPoint 97-2003 (PPT) Parser
JavaScript
107
star
11

k

โŒ Spreadsheet Differ
JavaScript
85
star
12

frac

โž— rational approximation with bounded denominator
JavaScript
72
star
13

sgds

Simple REST Server that emulates Google Docs interface using your Excel files (currently read-only)
JavaScript
71
star
14

js-cfb

๐Ÿ’พ OLE File Container Format
JavaScript
59
star
15

js-harb

โŒ Host of Archaic Representations of Books (now merged in http://github.com/sheetjs/js-xlsx )
JavaScript
55
star
16

jxls

Snapshot for test files. https://github.com/jxlsteam/jxls is the current repo for the project
Java
51
star
17

sheetaki

๐Ÿ”ฃ Spreadsheet CSV conversion microservice
HTML
50
star
18

pb

๐Ÿ“‹ Access HTML and other pasteboards from JS and command line
JavaScript
35
star
19

bessel

Bessel Functions in JS
JavaScript
31
star
20

sheets

generate pretty ascii tables from XLS/XLSX/XLSB/XLSM/XML workbooks
JavaScript
23
star
21

wk

๐Ÿ” Preview spreadsheets in your terminal!
TypeScript
20
star
22

enron_xls

Spreadsheets from the Enron Corpus
JavaScript
20
star
23

voc

๐Ÿ‘ท A Literate Programming Framework for JS and compile-to-JS languages.
JavaScript
20
star
24

maths

Collection of Math Functions for NodeJS
JavaScript
18
star
25

py-xls

PyPI xls module
Python
16
star
26

sheet.js.org

sheet.js.org
15
star
27

js-wmf

Windows MetaFile (wmf) processor
TypeScript
14
star
28

bz2

bzip2 for JavaScript
JavaScript
13
star
29

js-vdc

๐ŸŽง van der Corput low-discrepancy sequences
HTML
13
star
30

cfb-editor

๐Ÿ’ผ ZIP/CFB/MIME Archive Editor
JavaScript
9
star
31

node-exit-on-epipe

๐Ÿ’ฅ Cleanly exit on pipe errors
JavaScript
9
star
32

xlsx-nw-demo

node-webkit XLSX demo
JavaScript
7
star
33

rooster

๐Ÿ“ File filter for version control systems.
Go
7
star
34

docs.sheetjs.com

SheetJS Community Edition Docs repo
HTML
6
star
35

notes

Various file format notes
TypeScript
5
star
36

js-funzip

`funzip` for nodejs
TypeScript
4
star
37

libreoffice_test-files

Mirror of LO Test Files (see https://bugs.freedesktop.org/show_bug.cgi?id=85756)
Python
3
star
38

flat-sheet

demo for https://docs.sheetjs.com/docs/demos/hosting/github
TypeScript
2
star
39

sheetjs-npm-placeholder

Placeholder for the `sheetjs` package on npm
1
star
40

test_files_pres

Presentation Test Files
1
star