govcl VS secure

Compare govcl vs secure and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
govcl secure
5 3
2,089 2,210
- -
6.0 2.9
4 months ago 4 days ago
Go Go
Apache License 2.0 MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

govcl

Posts with mentions or reviews of govcl. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-24.
  • Lazarus IDE 3.0 Released
    3 projects | news.ycombinator.com | 24 Dec 2023
  • Python GUIs
    14 projects | news.ycombinator.com | 14 Jun 2023
    I like to use GoVCL [0] as it provides the GUI of Lazarus [1] including drag-n-drop form designer but with Go as the main language.

    GoVCL's author built a C library called liblcl [2] which is what GoVCL uses to control the GUI, so if you know C you can use it instead of Go.

    I'm building a lightweight Steam chat client with GoVCL so that I don't need the official client that takes like 200-300mb ram just to show text [3].

    [0]: https://github.com/ying32/govcl

  • What are pros and cons of Go?
    5 projects | /r/golang | 20 Jun 2022
    GUI (of course there are now solutions , https://golangr.com/gui/ https://z-kit.cc/ https://developer.fyne.io/ more at here: https://github.com/go-graphics/go-gui-projects )
  • Any good git repos made by a single dev?
    11 projects | /r/golang | 18 Aug 2021
    https://github.com/ying32/govcl - VCL UI for Go, 1 person does most of the commits.
  • Is there is good GUI for Golang ?
    18 projects | /r/golang | 12 Aug 2021
    Still not sure why this isn't more well known :/ https://github.com/ying32/govcl

secure

Posts with mentions or reviews of secure. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-08-18.
  • Any good git repos made by a single dev?
    11 projects | /r/golang | 18 Aug 2021
  • Web security focused frameworks (and/or) packages
    3 projects | /r/golang | 29 Jul 2021
  • API With GO Buffalo in 2021: from zero to deploy
    1 project | dev.to | 4 Mar 2021
    package actions import ( "project1/models" "github.com/gobuffalo/buffalo" "github.com/gobuffalo/envy" forcessl "github.com/gobuffalo/mw-forcessl" i18n "github.com/gobuffalo/mw-i18n" paramlogger "github.com/gobuffalo/mw-paramlogger" "github.com/unrolled/secure" "github.com/gobuffalo/buffalo-pop/v2/pop/popmw" contenttype "github.com/gobuffalo/mw-contenttype" "github.com/gobuffalo/x/sessions" "github.com/rs/cors" "github.com/gobuffalo/packr/v2" ) // ENV is used to help switch settings based on where the // application is being run. Default is "development". var ENV = envy.Get("GO_ENV", "development") var app *buffalo.App var T *i18n.Translator // App is where all routes and middleware for buffalo // should be defined. This is the nerve center of your // application. // // Routing, middleware, groups, etc... are declared TOP -> DOWN. // This means if you add a middleware to `app` *after* declaring a // group, that group will NOT have that new middleware. The same // is true of resource declarations as well. // // It also means that routes are checked in the order they are declared. // `ServeFiles` is a CATCH-ALL route, so it should always be // placed last in the route declarations, as it will prevent routes // declared after it to never be called. func App() *buffalo.App { if app == nil { app = buffalo.New(buffalo.Options{ Env: ENV, SessionStore: sessions.Null{}, PreWares: []buffalo.PreWare{ cors.Default().Handler, }, SessionName: "_project1_session", }) // Automatically redirect to SSL app.Use(forceSSL()) // Log request parameters (filters apply). app.Use(paramlogger.ParameterLogger) // Set the request content type to JSON app.Use(contenttype.Set("application/json")) // Wraps each request in a transaction. // c.Value("tx").(*pop.Connection) // Remove to disable this. app.Use(popmw.Transaction(models.DB)) app.GET("/", HomeHandler) app.GET("/todo/", TodoIndex) app.GET("/todo/add", TodoAdd) app.GET("/todo/{id}", TodoShow) // <--- MAKE SURE THIS IS AT BOTTOM OF LIST } return app } // translations will load locale files, set up the translator `actions.T`, // and will return a middleware to use to load the correct locale for each // request. // for more information: https://gobuffalo.io/en/docs/localization func translations() buffalo.MiddlewareFunc { var err error if T, err = i18n.New(packr.New("app:locales", "../locales"), "en-US"); err != nil { app.Stop(err) } return T.Middleware() } // forceSSL will return a middleware that will redirect an incoming request // if it is not HTTPS. "http://example.com" => "https://example.com". // This middleware does **not** enable SSL. for your application. To do that // we recommend using a proxy: https://gobuffalo.io/en/docs/proxy // for more information: https://github.com/unrolled/secure/ func forceSSL() buffalo.MiddlewareFunc { return forcessl.Middleware(secure.Options{ SSLRedirect: ENV == "production", SSLProxyHeaders: map[string]string{"X-Forwarded-Proto": "https"}, }) }

What are some alternatives?

When comparing govcl and secure you can also consider the following projects:

fyne-x - Community extensions to the cross platform GUI in Go based on Material Design

passlib - :key: Idiotproof golang password validation library inspired by Python's passlib

nucular - GUI toolkit for go

go-acl - Go support for Access Control Lists

fyne - Cross platform GUI toolkit in Go inspired by Material Design

Themis - Easy to use cryptographic framework for data protection: secure messaging with forward secrecy and secure data storage. Has unified APIs across 14 platforms.

windigo - Windows API and GUI in idiomatic Go.

memguard - Secure software enclave for storage of sensitive information in memory.

gi - This is version 1 of GoGi, for supporting existing projects. See https://github.com/cogentcore for the new improved version!

certmagic - Automatic HTTPS for any Go program: fully-managed TLS certificate issuance and renewal

beep - A little package that brings sound to any Go application. Suitable for playback and audio-processing.

ssh-vault - 🌰 encrypt/decrypt using ssh keys