4 ms·
I use multiplatform Kotlin to compile shared business logic to JVM and Javascript. The frontend then uses Typescript+React/Redux while the backend is a Kotlin S
by RandomBK 8y ago
I use multiplatform Kotlin to compile shared business logic to JVM and Javascript. The frontend then uses Typescript+React/Redux while the backend is a Kotlin Spring app with Postgres.
- FragenAntworten 8y agoHow are you handling authentication? OAuth 2 with Spring Security, or something else?
- leonroy 8y agoNot the OP but I started with cookie based auth and Spring Security and then moved to OAuth 2 - it’s extremely painless to setup (100 lines of code at most) but it did take a while to understand it all. The Baeldung Spring Security course helped a lot. If in a hurry though you can always use an external service like Auth0. I had that setup in an afternoon whereas understanding OAuth 2 and Spring Security took a week.
- FragenAntworten 8y agoThanks! I'll check that course out.