Zellio.io
Recipes

Jobs that take more than one tool

A recipe is a fixed list of steps for something people do often: paste once, run, and read every intermediate result. Text recipes run on the page. Image and document recipes walk you through the tools in order, handing the file forward. Either way, nothing leaves your browser.

Run on the page

Developer Tools

Clean a JSON API response and type it

Validate a pasted API response, format it, and generate TypeScript interfaces from it in one run. Nothing is uploaded.

  1. 1.Validate JSON
  2. 2.Format JSON
  3. 3.JSON → TypeScript
3 min read
Developer Tools

Turn a CSV into a typed JSON fixture

Clean a pasted CSV, convert it to JSON with the header row as keys, and derive a TypeScript Row type from it.

  1. 1.Clean hidden characters
  2. 2.CSV → JSON
  3. 3.JSON → TypeScript
2 min read
Developer Tools

Convert JSON to YAML for a config file

Check a JSON document and convert it to indented YAML for Kubernetes, CI or app config, in your browser.

  1. 1.Validate JSON
  2. 2.JSON → YAML
2 min read
Developer Tools

YAML config to JSON and a TypeScript type

Tidy a YAML config, convert it to JSON, and generate a Config interface for it. Three steps, no upload.

  1. 1.Format YAML
  2. 2.YAML → JSON
  3. 3.JSON → TypeScript
2 min read
Text Tools

Deduplicate and sort a list

Clean, trim, deduplicate and alphabetise a pasted list in one run, ignoring case and blank lines.

  1. 1.Clean hidden characters
  2. 2.Trim lines
  3. 3.Sort lines
2 min read
Text Tools

Extract email addresses from text

Pull every email address out of a log, export or document, remove duplicates and sort them, without uploading anything.

  1. 1.Extract matches
  2. 2.Remove duplicate lines
  3. 3.Sort lines
2 min read
Text Tools

Turn a title into a URL slug

Clean a headline, put it in title case for display and produce a lower-case hyphenated slug for the URL.

  1. 1.Clean hidden characters
  2. 2.Change case
  3. 3.Slugify
2 min read
Developer Tools

Decode a JWT and read its claims

Paste a JSON Web Token and see its header and claims as formatted JSON, decoded in your browser. The signature is not verified.

  1. 1.Clean hidden characters
  2. 2.Decode JWT
2 min read
Text Tools

Markdown to a clean HTML snippet

Convert Markdown to HTML and beautify the markup, ready to paste into a CMS or an email template.

  1. 1.Clean hidden characters
  2. 2.Markdown → HTML
  3. 3.Beautify HTML / XML
1 min read
Developer Tools

Base64-encode a JSON payload

Validate JSON, minify it and Base64-encode the result for a header, an environment variable or a config field.

  1. 1.Validate JSON
  2. 2.Minify JSON
  3. 3.Base64 encode
2 min read
Developer Tools

Clean text and URL-encode it

Remove smart quotes and invisible characters from a value, then percent-encode it so it is safe in a query string.

  1. 1.Clean hidden characters
  2. 2.URL encode
2 min read

Guided, one tool after another