JavaScript Minifier Wget Example

Check the example on how to use
wget
to minify a JavaScript hardcoded string and output to stdout:
wget -q --post-data='input=console.log(  1  )' -O - http://broadviewk8.heparrest.net/developers/javascript-minifier/api/raw

Output:

console.log(1)