Hacker News new | ask | show | jobs
by alok-g 482 days ago
What similar libraries exist for other languages? (I could not find myself.) Thanks.
1 comments

JavaScript definitely has a few such OpenAuthJS, Better-Auth, and Next-Auth.

PHP Laravel, Ruby on Rails, Python Django, Elixir Phoenix all have some ways of doing this, but are usually baked into the framework.

Others usually end up as a standalone service like Keycloak, Authelia and more.

Thanks.

Sounds like there's not much like this for Java or C#.

I think the most similar you'd find for Java are Shiro [0], Java Authentication and Authorization Service (JAAS) [1], and pac4j [2].

0: https://shiro.apache.org/

1: https://docs.oracle.com/en/java/javase/22/security/java-auth...

2: https://github.com/pac4j/pac4j

Thanks!