npm.io
0.1.7 • Published 6 years ago

rust-wasm-react-calculator

Licence
Version
0.1.7
Deps
0
Size
868 kB
Vulns
0
Weekly
0

This package is the result of compiling Rust in WASM with wasm-pack

This is not a production package

This package is not tested, and is just the result of some fun and learning with Rust and Wasm

Source code HERE

wasm-pack

blog post tutorial with react

Usage:

// Import package

const wasm = await import('rust-wasm-react-calculator'); // Wasm calls must be async

Call calculate with a simple expression as string

const expression = '14+5';

wasm.calculate(expression); // Expression must have 1 operator, +, -, X, /, %, ^

Keywords