The structure of this project is hugely inspired by scalapb-json4s
Include in your build.sbt file
libraryDependencies += "io.github.scalapb-json" %% "scalapb-circe" % "0.6.0"for scala-js
libraryDependencies += "io.github.scalapb-json" %%% "scalapb-circe" % "0.6.0"libraryDependencies += "io.github.scalapb-json" %% "scalapb-circe-macros" % "0.6.0"There are four functions you can use directly to serialize/deserialize your messages:
JsonFormat.toJsonString(msg) // returns String
JsonFormat.toJson(msg) // returns Json
JsonFormat.fromJsonString(str) // return MessageType
JsonFormat.fromJson(json) // return MessageType