Build small command line apps with ease.
go get -u github.com/kataras/cli
package main
import (
"strconv"
"github.com/kataras/cli"
)
func main() {
app := cli.NewApp("httpserver", "converts current directory into http server", "0.0.1")
app.Flag("directory", "C:/users/myfiles", "specify a current working directory") // $executable -d, $executable --directory $the_dir
// create a command that can be used by more than one app if you want it
listenCommand := cli.Command("listen", "starts the server") // $executable listen
listenCommand.Flag("host", "127.0.0.1", "specify an address listener") // $executable listen -h, $executable listen --host $the_host
listenCommand.Flag("port", 8080, "specify a port to listen") // $executable listen -p, $executable listen --port $the_port
listenCommand.Flag("dir", "", "current working directory") // $executable listen -d, $executable listen --dir $the_dir
listenCommand.Flag("req", nil, "a required flag because nil default given") // $executable listen -r , $executable listen --req $the_req
listenCommand.Action(listen)
app.Command(listenCommand) //register this command to the app.
app.Run(run)
}
func run(args cli.Flags) error {
println("Running ONLY APP with -d = " + args.String("directory"))
return nil
}
func listen(args cli.Flags) error {
println("EXECUTE ONLY 'listen' with args\n1 host: ", args.String("host"))
println("2 port: ", strconv.Itoa(args.Int("port")))
return nil
}
Note that --help (or -help) global flag is automatically used and displays help message.
package main
import (
"strconv"
"github.com/kataras/cli"
)
func main() {
var globalFlags = cli.Flags{
cli.Flag("directory", "C:/users/myfiles", "specify a current working directory"),
}
cli.App{"httpserver", "converts current directory into http server", "0.0.1", cli.Commands{
cli.Command("listen", "starts the server").
Flag("host", "127.0.0.1", "specify an address listener").
Flag("port", 8080, "specify a port to listen").
Flag("dir", "", "current working directory"). // It's defaults to empty string it is not required flag
Flag("req", nil, "a required flag because nil default given"). // required flag because nil default given
Action(listen),
}, globalFlags}.Run(run)
}
func run(args cli.Flags) error {
println("Running ONLY APP with -d = " + args.String("directory"))
return nil
}
func listen(args cli.Flags) error {
println("EXECUTE ONLY 'listen' with args\n1 host: ", args.String("host"))
println("2 port: ", strconv.Itoa(args.Int("port")))
return nil
}
Note that --help (or -help) global flag is automatically used and displays help message.
Current: v0.0.2
Read more about Semantic Versioning 2.0.0
- http://semver.org/
- https://en.wikipedia.org/wiki/Software_versioning
- https://wiki.debian.org/UpstreamGuide#Releases_and_Versions
Thanks goes to the people who have contributed code to this package, see the
This project is licensed under the BSD 3-Clause License. License can be found here.