Also: we noticed that things like `Cookie.expires`...
# ktor
m
Also: we noticed that things like
Cookie.expires
has become a
GMTDate
-- what was the thinking behind moving away from standard Java date types to a homebrewed date API?
d
Ktor is multiplatform, it can't rely on Java types.
👍 1
m
What other platforms does Ktor target? Isn't it pretty coupled to a lot of JVM stuff?
d
Afaik it also runs on native (at least experimentally) and JS at some point
b
Most of the library is written multi-platform. It does provide helpers for migrating between JVM/ktor types (ie,
Url
vs
URI
) and entry points for using JVM engines (ie, Netty, Jetty), but for the most part, it's fairly uncoupled