howardjohn / scanamo-json

Scanamo DynamoFormat for popular Scala Json libraries

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Scanamo Json

Scanamo Json provides DynamoFormats for popular Scala Json libraries. The format will serialize directly to DynamoDB AttributeValues, allowing full use of DynamoDB while allowing arbitrary Json objects to be stored or reusing existing formats.

Getting started

Circe

First, add the dependency:

    libraryDependencies += "io.github.howardjohn" %% "scanamo-circe" % "0.2.1"

Finally, the format can be imported with:

    import io.github.howardjohn.scanamo.CirceDynamoFormat._

This provides a DynamoFormat[T] for all T with both an Encoder and Decoder.

Play Json

First, add the dependency:

    libraryDependencies += "io.github.howardjohn" %% "scanamo-play-json" % "0.2.1"

Finally, the format can be imported with:

    import io.github.howardjohn.scanamo.PlayJsonDynamoFormat._

This provides a DynamoFormat[T] for all T with a (play-json) Format.

About

Scanamo DynamoFormat for popular Scala Json libraries

License:MIT License


Languages

Language:Scala 100.0%