Sharpen your JSON files with json-sharpener
- a library
/CLI-tool
/web-app
for easy JSON to C#
converison.
json-sharpener
- the core library for parsing JSON to C#json-sharpener-terminal
- terminal parser that uses the core libraryjson-sharpener-wasm
- a WebAssembly wrapper around the core libraryjson-sharpener-web
- website that uses the WebAssembly core library
Usage: json-sharpener [OPTIONS] <FILE>
Examples:
json-sharpener response.json
json-sharpener --class-name Converted response.json
json-sharpener --help
cargo build --release -p json-sharpener-terminal
docker build -t json-sharpener-web .
docker run -p 8080:80 json-sharpener-web
Before running below step make sure the Rust compiler and wasm-pack
is installed (used for building WASM library of json-sharpener
).
cd ./json-sharpener-web/
npm run build-wasm && npm run dev