EtherCalc
- Introduction:
- Language: LiveScript
- Runtime: Node.js (0.8+ preferred; compatible with 0.4)
- Services: Redis (2.4+; fall-back to on-disk JSON storage if not present)
- Multi-server is supported only when running with Redis
- Browsers tested: Safari, Chrome, Firefox, IE.
- Integrated with content management systems:
- Overview:
- English: http://ethercalc.net/
- 中文版: http://ethercalc.tw/
Installation
npm i -g ethercalc
ethercalc
Or install with our Docker image, which comes with built-in Redis server and webworker-threads support:
# Runs at port 6967 (default)
docker run -b /var/lib/redis:/redis:rw audreyt/ethercalc
# Runs at another port, for example 8080
docker run -p 8080:6967 -b /var/lib/redis:/redis:rw audreyt/ethercalc
Note the use of -b
flag to store the Redis database on /var/lib/redis
in
the host server; this option requires Docker version 0.4.7.
REST API
Note that POST endpoints accept only application/json
requests,
and will reject regular form posts.
GET /_/page
Fetch the page as a serialization in SocialCalc save format.
PUT /_/page
Replaces the page with a serialization in SocialCalc save format.
POST /_
Takes a JSON structure with room
and snapshot
fields.
Replaces the page with a serialization in Socialtext save format.
POST /_/page
Takes a JSON structure with a command
field (either as a string
or an array of strings).
Runs one or more commands specified in the command
field.
GET /_/page/cells
Returns a JSON representation of all defined cells in the page.
GET /_/page/cells/A1
Returns a JSON representation of a single cell in the page.
GET /_/page/html
Returns a HTML rendering of the page. (GET /page.html also works.)
GET /_/page/csv
Returns a CSV rendering of the page. (GET /page.csv also works.)
Flags
--keyfile
/ --certfile
Using SSL: openssl genrsa -out ethercalc-key.pem 1024
openssl req -new -key ethercalc-key.pem -out certrequest.csr
openssl x509 -req -in certrequest.csr -signkey ethercalc-key.pem -out ethercalc-cert.pem
ethercalc --keyfile ethercalc-key.pem --certfile ethercalc-cert.pem
--polling
Prefers polling over Websocket: Useful when running behind a proxy without WebSocket support.
--cors
Enable Cross-Origin Resource Sharing: Useful when setting up EtherCalc as a public REST API server.
--basepath /path/prefix
URL Prefix: Useful when running under an URL rewriter.
--key secret
Access Control: Offers read-write vs. read-only modes. See issues #1 and #4 for details on setting this up.
--vm
Disable server-side WebWorkers: Runs a single-thread background loop with vm.createContext
instead of webworker-threads
.
Useful for running custom functions in server side that requires full VM access.
Licensing
Common Public Attribution License (Socialtext Inc.)
- socialcalcspreadsheetcontrol.js
- socialcalctableeditor.js
- images/*
Artistic License 2.0 (Socialtext Inc.)
- formatnumber2.js
- formula1.js
- socialcalc-3.js
- socialcalcconstants.js
- socialcalcpopup.js
MIT License (John Resig, The Dojo Foundation)
- static/jquery.js
CC0 Public Domain (唐鳳)
- src/*.ls