data-colon

Encode and decode data: URIs on the command line using strong-data-uri

Usage no npm install needed!

<script type="module">
  import dataColon from 'https://cdn.skypack.dev/data-colon';
</script>

README

data-colon

Encode and decode data: URIs on the command line using strong-data-uri.

Installation

npm install -g data-colon

Usage:

data-colon [options] [fileOrURI...]

  Options:

    -h, --help              output usage information
    -V, --version           output the version number
    -o, --output <file>     Output file name [stdout]
    -m, --mediatype <type>  MIME media type for encoding

Examples

decode:

data-colon data:application/octet-stream;base64,Zm9vCg==
echo 'data:application/octet-stream;base64,Zm9vCg==' | data-colon -o foo

encode:

data-colon image.jpg
echo foo | data-colon -m text/plain

Tests Coverage Status