netlify-identity-widget VS gotrue

Compare netlify-identity-widget vs gotrue and see what are their differences.

netlify-identity-widget

A zero config, framework free Netlify Identity widget (by netlify)

gotrue

An SWT based API for managing users and issuing SWT tokens. (by netlify)
Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
netlify-identity-widget gotrue
4 22
759 3,713
0.3% 1.1%
7.5 3.6
about 1 month ago 4 months ago
JavaScript Go
MIT License 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.

netlify-identity-widget

Posts with mentions or reviews of netlify-identity-widget. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-01-02.
  • Manage and Authenticate Users with Netlify Identity
    2 projects | dev.to | 2 Jan 2022
    Leveraging the open-source GoTrue API, Netlify Identity can be added to your site with the Netlify Identity widget by adding this
  • Part 1: How I built our condos's new web pages with Gatsby and Chakra UI
    4 projects | dev.to | 12 Sep 2021
    In the first version of the website, I used Netlify Identity, which is Netlify's own authentication solution. With Netlify Identity Widget it is easy to add authentication, but I quickly discovered that I missed some more advanced functionality. I therefore switched to Auth0, which to a greater extent allowed me to tailor the login solution. Auth0 also had some functionality I needed to create a user admin dashboard, like role-based authentication.
  • Part 3: Authentication and private routes in Gatsby
    3 projects | dev.to | 12 Sep 2021
    However, it soon became apparent that Netlify Identity had some limitations. One was that the login alert was not in Norwegian (I translated it and opened a pull request, but could not wait for it to go through. It's been 7 months now...). The other reason for not sticking with Netlify Identify was that I started working on a dashboard for user account management where I would need some more advanced functionality than Netlify Identity Widget could provide. After some research, I ended up choosing Auth0.
  • Ask HN: Cheapest/ easiest way to host a static site
    12 projects | news.ycombinator.com | 26 Mar 2021
    How do you know that Netlify is production ready? I found Netlify Identity to not be production ready* and now I'm not so sure about the rest of the platform.

    * Three reasons. 1) The identity widget has people setting it up in such a way that tokens aren't refreshed and logins last only an hour. https://github.com/netlify/netlify-identity-widget/issues/11... 2) Netlify Identity keeps bumping me out despite having gone out of my way to get it configured properly. I don't know why but the issue has lasted for weeks. 3) In development mode, the token can't be verified without making a request to Netlify Functions, and the suggested path (in Redwood.js at least) is to just parse the JWT without verifying it.

gotrue

Posts with mentions or reviews of gotrue. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-14.
  • Supabase Auth: Identity Linking, Hooks, and HaveIBeenPwned integration
    3 projects | dev.to | 14 Dec 2023
    If you’ve been following us from the start, you will know that Supabase Auth started by forking Netlify’s GoTrue server. A lot has changed since then and we’ve diverged from the upstream repository. At this stage it makes sense to rename the project to something else (cues drumroll) — Auth.
  • FATA[0000] Error 1130: Host '172.17.0.1' is not allowed to connect to this MySQL server
    1 project | /r/AskProgramming | 19 May 2023
    I am testing gotrue netlift module https://github.com/netlify/gotrue
  • Netlify Gotrue – SWT based API for managing users and issuing SWT tokens
    1 project | news.ycombinator.com | 11 May 2023
    1 project | news.ycombinator.com | 2 May 2023
  • gotrxx VS gotrue - a user suggested alternative
    2 projects | 11 Mar 2023
    I guess since it's a deviation of it
  • GoTrue is a small open-source API written in Golang
    1 project | news.ycombinator.com | 8 Dec 2022
  • Ask HN: Ok to only allow Google/Apple/FB login for mobile app?
    1 project | news.ycombinator.com | 29 Aug 2022
    To answer point 1: Maybe to start out, but in the long run, having only social logins may cause your app to lose a segment of the market (I don't know how much). If you're fine with that, then by all means only support social logins.

    However, I strongly suggest having it (or some way for someone not to use a social provider) if you want to have as many users a possible.

    Personally, I don't have a google account, I'm wary to use my Apple account for non-Apple sites, and I don't have facebook, instagram, new gen z hotness app, etc... And I can confidently say I am not alone in choosing to use apps which don't require a social login.

    At the end of the day though, password auth isn't a non-trivial problem. It is a solved problem of which there are numerous articles/papers and many libraries for most languages/frameworks. For example, the Phoenix framework for Elixir has a built in command which scaffolds auth, and it works really well (I have used it in a personal project): https://hexdocs.pm/phoenix/mix_phx_gen_auth.html. For JS, you can use something like passport: https://www.passportjs.org/packages/passport-local/. If you want a separate service entirely (even though it would be more complex to have a separate service to start out), there is GoTrue: https://github.com/netlify/gotrue. These are just a few suggestions of tech I have come across. There is so much more out there, I encourage you to research options to see what may be a best fit.

    If you're worried about password auth, maybe give one time passwords a try. They don't require any password reset flow, and are generally secure when implemented correctly. As an example, I don't have a password for my craigslist account. Every time I want to login, I can choose to get a magic link/otp which gets exchanged for a session. In practice (and this is my personal opinion), I prefer magic links. They are one time, hard to guess (again dependent on implementation), can be time limited, and most likely won't be intercepted in transit (though it could be in a rare circumstance).

    To answer point 2: yes.

    If your app is to order things (I use things in a general term) it sounds like eCommerce. And if you're in eCommerce, you better have a way for a user to track what they have ordered and how much they have paid for it at a minimum. Otherwise, your site may come across as a scam, even though it uses Stripe. Sketchy sites can use Stripe to get your money (albeit, it'll be a one time payment).

    In conclusion, auth for your application seems crucial. Email/password auth is still relevant for applications. While not necessary for an MVP, there is a segment of the market you will lose if you don't have an email/password option, or even an email/OTP/magic link option (I don't know how much, really going off an educated guess).

    Best of wishes in building your app! I genuinely hope it is successful and safe for people to leverage :)

  • I got tired of fussing with auth, so I built a thing for building OAuth login in under 60 seconds.
    4 projects | /r/programming | 1 Jul 2022
    Use a self-hostable auth microservice like gotrue or authelia, ORY's suite of products, etc.
  • what should I do about authentication in golang?
    4 projects | /r/golang | 21 Jun 2022
  • actix-session 0.6.0 is out - an almost complete rewrite!
    1 project | /r/rust | 15 Mar 2022
    Any examples for implementation like https://github.com/netlify/gotrue for Actix-web?

What are some alternatives?

When comparing netlify-identity-widget and gotrue you can also consider the following projects:

docsify - 🃏 A magical documentation site generator.

supabase - The open source Firebase alternative.

auth0-java - Java client library for the Auth0 platform

postgrest - REST API for any Postgres database

skynet-webportal - A webapp that makes Skynet accessible to web browsers.

authelia - The Single Sign-On Multi-Factor portal for web apps

wrangler-legacy - 🤠 Home to Wrangler v1 (deprecated)

hasura_gotrue - This is a slightly extended version of Netlify's GoTrue. It includes a `docker-compose.yaml` file to deploy it together with Hasura. This set up uses two databases, PostgreSQL for Hasura and MariaDB for GoTrue. Have fun!

letsencrypt - Certbot is EFF's tool to obtain certs from Let's Encrypt and (optionally) auto-enable HTTPS on your server. It can also act as a client for any other CA that uses the ACME protocol.

nextjs-supabase-auth - Sample project for setting up Supabase Auth in Next.js

VuePress - 📝 Minimalistic Vue-powered static site generator

supabase-auth-react