My API website preview

api.namitoyokota.com

Endpoints

Resources

Contribution Guides

Getting Statistics

Create a new file within the root directory with the name .env and fill in the below information:

EMAIL="Namito.Yokota@ncontracts.com"
TOKEN=""
ORGANIZATION="venminder"
CREATOR_ID=""

Blug Images

$ convert -blur 0x500 ./image.jpg ../images-compressed/image.jpg
$ for FILE in *; do convert -blur 0x500 ./$FILE ../images-compressed/$FILE; done

Compress Images

$ optimizt /path_to_image.jpg

Convert JPG to WEBP

$ cwebp -q 50 ./image.jpg -o ./image.webp
$ for FILE in *; do cwebp -q 50 ./$FILE -o ${FILE%%.*}.webp; done