Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kurehajime/flagstone
flagstone is a Go library to convert flags to web UI.
https://github.com/kurehajime/flagstone
cross-platform cui go golang golang-library golang-package gui web
Last synced: 3 months ago
JSON representation
flagstone is a Go library to convert flags to web UI.
- Host: GitHub
- URL: https://github.com/kurehajime/flagstone
- Owner: kurehajime
- License: mit
- Created: 2020-02-11T02:09:05.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-13T10:13:10.000Z (almost 4 years ago)
- Last Synced: 2024-06-20T15:56:05.868Z (8 months ago)
- Topics: cross-platform, cui, go, golang, golang-library, golang-package, gui, web
- Language: Go
- Homepage:
- Size: 22.5 KB
- Stars: 22
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flagstone
flagstone is a Go library to convert flags to web UI.
![flagstone](https://user-images.githubusercontent.com/4569916/74228957-ce9fab80-4d04-11ea-8eb5-2970496e75c5.png)
## install
```
go get github.com/kurehajime/flagstone
```## usage
1. Use golang's standard flag package.
```
package mainimport (
"flag"
"fmt"
)var who *string
func main() {
who = flag.String("who", "world", "say hello to ...")
flag.Parse()fmt.Println("hello " + *who + "!")
}
```1. Import flagstone and add one line.
```
package mainimport (
"flag"
"github.com/kurehajime/flagstone" //★ here ★
"fmt"
)var who *string
func main() {
who = flag.String("who", "world", "say hello to ...")
flag.Parse()flagstone.Launch("helloworld", "flagstone sample") //★ here ★
fmt.Println("hello " + *who + "!")
}```
1. Finish!
When you run the program, the browser starts.
Pressing the "Run" button sets the flag and runs the program.
![screenshot](https://user-images.githubusercontent.com/4569916/74208613-ac3b6d00-4cc7-11ea-9f3c-e686874f2e38.png)
## options
#### SetPort
Specify the port number.
#### SetSubURL
Specify sub URL.
If not specified, it is determined randomly.#### SetSort
Specify the order of the parameters.
If not specified, it will be in ABC order.#### SetSilent
If set to true, flagstone will not produce any extra output.
#### SetUseNonFlagArgs
If true is set, non-flag arguments are added.
non-flag arguments can be obtained by the return value of the Lanch method.#### SetCSS
Specify CSS.