0.5.4 • Published 5 months ago

@ironcalc/wasm v0.5.4

Weekly downloads
-
License
MIT/Apache-2.0
Repository
github
Last release
5 months ago

IronCalc Web bindings

This package contains web bindings for IronCalc. Note that it does not contain the xlsx writer and reader, only the engine.

Usage

In your project

npm install @ironcalc/wasm

And then in your TypeScript

import init, { Model } from "@ironcalc/wasm";

await init();

function compute() {
    const model = new Model('en', 'UTC');
    
    model.setUserInput(0, 1, 1, "23");
    model.setUserInput(0, 1, 2, "=A1*3+1");
    
    const result = model.getFormattedCellValue(0, 1, 2);
    
    console.log("Result: ", result);
}

compute();
0.3.0

10 months ago

0.5.4

5 months ago

0.5.3

5 months ago

0.5.0

5 months ago

0.3.2

9 months ago

0.1.3

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago

0.1.0

2 years ago