Giter Site home page Giter Site logo

cliffy's People

Contributors

ar065 avatar dependabot[bot] avatar drew-y avatar imagdy avatar localjo avatar mbwhite avatar paralax avatar sergeshkurko avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

cliffy's Issues

Feature suggestions

Been playing around with this for a CLI client before building a full on GUI. Had some ideas:

  1. Tab support - command name or if sub command is next suggest that instead
  2. Support single quotes for parameters - compute networkID 'a b c' currently gives a
    while compute networkID "a b c" gives an a b c
  3. Function to display help for a certain command. For example if I use compute for as a namespace, if I type compute without a sub command following it, then I could show a list of sub commands help as if I typed help compute

Also curious, is it's possible to type while writing out text? I was playing with a CLI a few years ago and ran into that problem, but thinking it's probably some limitation in general. https://youtu.be/Q_E7ZFtoKY4 - I guess if that's the case then you wouldn't want to write anything to the console unless responding to a command.

[Request] Command Aliases

I may do a PR for this if I have time - I imagine this should be relatively simple?
Basically, my feature request just an array of aliases - set as a property on addCommand. Then, you can use these to execute the command as well as the normal trigger.

(The aliases wouldn't have to show up in help)

Unable to print color in the console

I am using chalk to print color, but it doesn't work with cliffy...

import { CLI } from "cliffy"
import chalk from "chalk"

const cli = new CLI()
  .setDelimiter(chalk.bold.blue("󰥭 "))
  .addCommand("run", {
    description: "Run somewhere",
    options: [{ label: "quickly", description: "Run quickly" }],
    parameters: ["destination"],
    action: (params, options) => {
      if (options.quickly) {
        console.log(chalk.yellow(`I ran to ${params.destination} quickly`))
        return
      }

      console.log(`I ran to ${params.destination}`)
    },
    subcommands: {
      to: {
        description: "Run to a destination",
        parameters: ["destination"],
        action: (params) => console.log(`I ran to ${params.destination}`),
      },
      from: {
        description: "Run from a destination",
        parameters: ["location"],
        action: (params) => console.log(`I ran from ${params.location}`),
      },
    },
  })
  .show()

Custom Error Messages and Header

I would like to start off that the tool is exactly what I needed only I miss out on the following:

  • Customize Error (Command not Found)
  • Maybe set a header as ASCII Art that will come back

Commands take more arguments than supported

I just ran the example snippet and was surprised that this is accepted as input:

-->run foo bar

The command supports only one argument; if more are provided, I would expect that the CLI yields an error message that reminds the user of the correct syntax, but the CLI seems to ignore the superflous input silently and outputs this:

I ran to foo
-->

TS Error with option "noUnusedLocals"

With these tsc option "noUnusedLocals": true,
TSC give console errors:

node_modules/cliffy/src/index.ts(4,19): error TS6133: 'Parameter' is declared but its value is never read.
node_modules/cliffy/src/index.ts(10,7): error TS6133: 'columnify' is declared but its value is never read.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.