spreadsheet
typeScript/javascript spreadsheet parser, with formulas.
git clone https://git.vogt.world/spreadsheet.git
Log | Files | README.md
← Commit log
commit
message
[npm] preparing package for publishing
author
Ben Vogt <[email protected]>
date
2017-05-26 23:30:26
stats
2 file(s) changed, 8 insertions(+), 2 deletions(-)
files
README.md
package.json
 1diff --git a/README.md b/README.md
 2index 2662566..076a48c 100644
 3--- a/README.md
 4+++ b/README.md
 5@@ -3,11 +3,16 @@ TypeScript/javascript spreadsheet.
 6 
 7 ## Usage
 8 
 9+### Install
10+```
11+npm install js-spreadsheet
12+```
13+
14 ### Examples
15 
16 **Using a Sheet**
17 ```javascript
18-var Sheet = require("./dist/Sheet.js").Sheet;
19+var Sheet = require("js-spreadsheet").Sheet;
20 var sheet = new Sheet();
21 sheet.setCell("A1", "10");
22 sheet.setCell("A2", "14");
23@@ -19,7 +24,7 @@ sheet.getCell("B1").getValue(); // returns: 1123.1
24 
25 **Using Formulas Directly**
26 ```javascript
27-var Formulas = require("./dist/Sheet.js").AllFormulas;
28+var Formulas = require("js-spreadsheet").AllFormulas;
29 Formulas.SUM(1, 2, 3, [4, 5, 6], "7"); // returns: 28
30 ```
31 
32diff --git a/package.json b/package.json
33index 5038be5..ddb3057 100644
34--- a/package.json
35+++ b/package.json
36@@ -1,5 +1,5 @@
37 {
38-  "name": "spreadsheet",
39+  "name": "js-spreadsheet",
40   "version": "1.0.0",
41   "description": "TypeScript/javascript implementation of a spreadsheet.",
42   "scripts": {