json-escape-cli 0.1.0

A CLI tool to JSON-escape strings read from stdin
# json-escape

A CLI tool that reads a string from stdin and outputs it as a JSON-escaped string,
wrapped in double quotes — ready to paste directly into JSON.

## Installation

Download the latest binary for your platform from the
[GitHub Releases](https://github.com/nick-the-nuke/json-escape/releases) page.

| Platform | Archive |
|---|---|
| Linux x86_64 | `json-escape-x86_64-unknown-linux-gnu.tar.gz` |
| macOS x86_64 | `json-escape-x86_64-apple-darwin.tar.gz` |
| macOS ARM64 | `json-escape-aarch64-apple-darwin.tar.gz` |
| Windows x86_64 | `json-escape-x86_64-pc-windows-msvc.zip` |

## Usage

```
echo "Hello / World" | json-escape
"Hello \/ World"
```

## Flags

### `--no-escape-slash`

By default, `json-escape` escapes forward slashes (`/` → `\/`), which is safe
for HTML/script embedding. Use `--no-escape-slash` to output `/` as-is:

```
echo "https://example.com" | json-escape
"https:\/\/example.com"

echo "https://example.com" | json-escape --no-escape-slash
"https://example.com"
```