- Git - Download & Install Git.
- Node.js - Download & Install Node.js and the npm package manager.
git clone {repository URL}
npm install
To start app:
node app <options>
Options:
- -s, --shift caesar cipher shift (required!)
- -i, --input input file path
- -o, --output output file path
- -a, --action encode/decode (required!)
- -h, --help display help for command
Example:
node app --action decode --shift 7
node app --action decode --shift 7 --input decoded.txt --output plain.txt