chef-for-terminal

1.1.0 • Public • Published

chef-cli

Quickly convert things into other things

Build Status npm npm License

Install

npm install -g chef-for-terminal

Usage

Run the command and convert away

Usage
   $ chef

Current list of recipes

  • Celcius to Fahrenheit
  • Celcius to Kelvin
  • Decimal to Hexadecimal
  • Decode Base64
  • Decode Binary
  • Decode JWT Token
  • Encode Base64
  • Encode to Binary
  • Fahrenheit to Celcius
  • Pound to Euro
  • Pound to Dollar
  • Hexadecimal to Decimal
  • Kelvin to Celcius
  • Kilometers to Miles
  • Miles to Kilometers

Create your own recipes:

Clone the repo:

git clone https://github.com/cesarferreira/chef-cli
cd chef-cli
npm link
$ chef create "Kilometers to Miles"

A file kilometers-to-miles.js is automatically created inside recipes/ folder with:

module.exports = {
    title: "Kilometers to Miles",
    execute: input => {
        return new Promise((resolve, reject) => {
            // TODO calculations with 'input'
            resolve(42);
        });
    }
}

All you have to do is replace the execute function with your own and open a pull request!


Made with ❤️ by Cesar Ferreira

Dependencies (11)

Dev Dependencies (1)

Package Sidebar

Install

npm i chef-for-terminal

Weekly Downloads

4

Version

1.1.0

License

MIT

Unpacked Size

788 kB

Total Files

39

Last publish

Collaborators

  • cesarferreira