setup

(★ 21)

Setup wizard for TastyIgniter

File Explorer

  • .editorconfig
  • .gitignore
  • LICENSE.txt
  • README.md
  • setup.php

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

npm install

View Details ▼

Install Node packages.

npm {{[i|install]}}

Install dependencies listed in `package.json`:

npm {{[i|install]}} {{package_name}}@{{version}}

Download a specific version of a package and add it to the list of dependencies in `package.json`:

npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}

Download the latest version of a package and add it to the list of dev dependencies in `package.json`:

🔍

npm run

View Details ▼

Run a script.

npm run

List available scripts:

npm run {{script_name}}

Run a script:

npm run {{script_name}} -- {{argument}} {{--option}}

Pass arguments to a script:

🔍

openssl

View Details ▼

OpenSSL cryptographic toolkit.
Some subcommands such as `req` have their own usage documentation.

openssl genpkey -algorithm {{rsa|ec}} -out {{path/to/private.key}} -aes256

Generate a private key and encrypt the output file using AES-256:

openssl rsa -in {{path/to/private.key}} -pubout -out {{path/to/public.key}}

Generate the corresponding public key from the private key `private.key` using `rsa`:

openssl req -new -x509 -key {{path/to/private.key}} -out {{path/to/certificate.crt}} -days 365

Generate a self-signed certificate valid for a specified number of days (365):

🔍

xml

View Details ▼

XMLStarlet Toolkit: query, edit, check, convert, and transform XML documents.
Some subcommands such as `validate` have their own usage documentation.

xml --help

Display general help, including the list of subcommands:

xml {{subcommand}} {{options}} {{path/to/input.xml|uri}}

Execute a subcommand with input from a file or URI, printing to `stdout`:

xml {{subcommand}} {{options}}

Execute a subcommand using `stdin` and `stdout`:

🔍

exif

View Details ▼

Show and change EXIF information in JPEG files.

exif {{path/to/image.jpg}}

Show all recognized EXIF information in an image:

exif {{[-l|--list-tags]}} --no-fixup {{path/to/image.jpg}}

Show a table listing known EXIF tags and whether each one exists in an image:

exif {{[-e|--extract-thumbnail]}} {{[-o|--output]}} {{path/to/thumbnail.jpg}} {{path/to/image.jpg}}

Extract the image thumbnail into a separate file:

// repository documentation