Giter VIP home page Giter VIP logo

go-multi-command's Introduction

Go based multi command

There are plenty of libraries that provide Cli args parsing with subcommands. In Python for example click seems quite popular, and for go there is for example cobra. These allow multiple git like sub commands within the same executable.

But what if you want a more plugin based approach like git and the go command itself. Where you can extend your application using any executable on $PATH. This repo contains a concept demonstrator go application that will do just that.

go build .

This will give an executable called mc which does the marshalling. Just running the ./mc command will provide the usage help. If we run ./mc test then we get an error saying it can't find the "test" subcommand.

For demonstration purposes we can add the current directory to $PATH.

export PATH=$PATH:$PWD

Then we can run the following commands, executing the plug-in subcommands as if they were part of the main command executable..

mc
mc bash
mc bash 1 2 3 4
mc python
mc python -c 123 ABC

go-multi-command's People

Contributors

machshev avatar

Watchers

 avatar

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.