Skip to content

neotypes/neotypes

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
May 22, 2023 15:34
September 15, 2023 11:38
December 10, 2022 12:42
March 12, 2023 18:06
May 19, 2019 14:44

Logo

neotype - a type specimen that is selected subsequent to the description of a species to replace a preexisting type that has been lost or destroyed.

Build status Scaladex Gitter chat Scala Steward

neotypes

Scala lightweight, type-safe, asynchronous driver (not opinionated on effect systems) for Neo4j

  • Scala - the driver provides you with support for all standard Scala types without the need to convert Scala <-> Java types back and forth and you can easily add support for your own types.
  • Lightweight - the core module of the driver only depends the Neo4j Java driver, and the generic module only depends on Shapeless.
  • Type-safe - the driver leverages typeclasses to derive all needed conversions at the compile time.
  • Asynchronous - the driver sits on top of asynchronous Java driver.
  • Not opinionated on side-effect implementation - you can use it with any effect system of your preference (Future, typelevel, ZIO, Monix) by implementing a simple typeclass.

Setup

⚠️ The library is under heavy development. Production use is at your own risk and is not recommended. ⚠️

Supports Scala 2.12 and 2.13
"io.github.neotypes" %% "neotypes-core" % version Core functionality. Supports scala.concurrent.Future.
"io.github.neotypes" %% "neotypes-generic" % version Automatic derivation of mappers for case classes.
"io.github.neotypes" %% "neotypes-cats-effect" % version Async support for cats.effect.Async[F]
"io.github.neotypes" %% "neotypes-monix" % version Async support for monix.eval.Task
"io.github.neotypes" %% "neotypes-zio" % version Async support for zio.Task
"io.github.neotypes" %% "neotypes-akka-stream" % version Stream support for akka.stream.scaladsl.Source
"io.github.neotypes" %% "neotypes-fs2-stream" % version Stream support for fs2.Stream
"io.github.neotypes" %% "neotypes-monix-stream" % version Stream support for monix.reactive.Observable
"io.github.neotypes" %% "neotypes-zio-stream" % version Stream support for zio.ZStream
"io.github.neotypes" %% "neotypes-refined" % version Support for insert and retrieve refined values.
"io.github.neotypes" %% "neotypes-cats-data" % version Support for insert and retrieve cats.data values.
"io.github.neotypes" %% "neotypes-enumeratum" % version Support for insert and retrieve Enumeratum enums.

Resources

Code of Conduct

We are committed to providing a friendly, safe and welcoming environment for all, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, religion, nationality, or other such characteristics.

Everyone is expected to follow the Scala Code of Conduct when discussing the project on the available communication channels.

Special thanks