Salesforce log analyzer tool built with Go, compiled to WebAssembly.
To build the WebAssembly files:
# Build standard wasm
GOOS=js GOARCH=wasm go build -o loganalyzer.wasm LogAnalyzer.go
# Build tiny wasm (optimized)
GOOS=js GOARCH=wasm go build -o loganalyzer-tiny.wasm -ldflags="-s -w" LogAnalyzer.goThe *.wasm files are build artifacts and are not included in the repository. Run the build commands above to generate them.