You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[`akka-http`](https://doc.akka.io/docs/akka-http/current/index.html) is an Akka
8
-
module, originating from [spray.io](http://spray.io), for building *reactive* REST services with an elegant DSL.
8
+
module, originating from [spray.io](http://spray.io), for building *reactive* REST services with an elegant DSL.
9
+
[`pekko-http`](https://pekko.apache.org/docs/pekko-http/current/) is an open-source fork of akka-http.
9
10
10
11
`akka-http` is a great toolkit for building backends for single-page or mobile applications. In almost all apps there
11
12
is a need to maintain user sessions, make sure session data is secure and cannot be tampered with.
@@ -15,6 +16,9 @@ or custom headers + local storage, with optional [Json Web Tokens](http://jwt.io
15
16
16
17
A [comprehensive FAQ](https://github.com/softwaremill/akka-http-session-faq) is available, along with code examples (in Java, but easy to translate to Scala) which answers many common questions on how sessions work, how to secure them and implement using akka-http.
17
18
19
+
Each `akka-http-session` module for `akka-http` has a corresponding `pekko-http` module, with a different group id
20
+
(see bottom of the readme).
21
+
18
22
## What is a session?
19
23
20
24
Session data typically contains at least the `id` or `username` of the logged in user. This id must be secured so that a
0 commit comments