BooPickle is the fastest and most size efficient serialization (aka pickling) library for Scala and Scala.js. It encodes into a binary format instead of the more customary JSON. A binary format brings efficiency gains in both size and speed, at the cost of legibility of the encoded data. BooPickle borrows heavily from both uPickle and Prickle so special thanks to Li Haoyi and Ben Hutchison for those two great libraries!
To view this discussion on the web visit https://groups.google.com/d/msgid/scala-js/981efe77-fc84-48e0-a765-36194fa49626%40googlegroups.com.--
You received this message because you are subscribed to a topic in the Google Groups "Scala.js" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/scala-js/HjeMmFIrC-M/unsubscribe.
To unsubscribe from this group and all its topics, send an email to scala-js+u...@googlegroups.com.
implicit val datePickler = TransformPickler[java.util.Date, Long](_.getTime, t => new java.util.Date(t))