Skip to content

Latest commit

 

History

History
131 lines (95 loc) · 6.18 KB

index.md

File metadata and controls

131 lines (95 loc) · 6.18 KB
layout title section
home
Home
home

Cats is a library which provides abstractions for functional programming in the Scala programming language. The name is a playful shortening of the word category.

Cats is a new project under active development. Feedback and contributions are welcomed as we look to improve it. This project is evolving quickly and we are making no guarantees about stability until a 1.0 release is made.

Getting Started

Cats is currently available for Scala 2.10, 2.11, 2.12 and scala.js

To get started with SBT, simply add the following to your build.sbt file:

libraryDependencies += "org.typelevel" %% "cats-core" % "1.0.0-MF"

This will pull in the cats-core module. If you require some other functionality, you can pick-and-choose from amongst these modules (used in place of "cats-core"):

  • cats-macros: Macros used by Cats syntax (required).
  • cats-kernel: Small set of basic type classes (required).
  • cats-core: Most core type classes and functionality (required).
  • cats-laws: Laws for testing type class instances.
  • cats-free: Free structures such as the free monad, and supporting type classes.
  • cats-testkit: lib for writing tests for typeclass instances using laws.

There are several other cats modules that are in separate repos so that they can maintain independent release cycles.

  • cats-effect: IO, Sync, Async and Effect type classes for the cats ecosystem
  • cats-mtl: transformer typeclasses for cats' Monads, Applicatives and Functors.
  • alleycats: Cats instances and classes which are outlaws, miscreants, and ne'er-do-wells.

Release notes for Cats are available in CHANGES.md.

Motivations

Approachability

As this library evolves, we are placing a lot of emphasis on trying to make decisions which will help keep this library approachable for people new to the concepts in this library. We are collecting anecdotes from successes and failures we have experienced in the past in trying to teach others about these concepts, and trying to make decisions which will help ease the process of getting acquainted to the library for a newcomer. If you have any feedback for us in this regard, we would love to hear from you. See the Contributing page to find out ways to give us feedback.

Modularity

We are trying to make the library modular. It will have a tight core which will contain only the type classes, the bare minimum of data structures that are needed to support them, and type class instances for those data structures and standard library types.

Documentation

We feel that having lots of documentation is a very important goal for our project. It will be a big win towards our goal of approachability. We will strive to have the code well documented, we will strive to have lots of documentation external to the code, and we will strive to have a large corpus of compiler verified examples of how the software can be used.

Writing documentation is a huge part of developing software, and one that is often neglected. It is also a very easy way to get started with contributing to the project

Efficiency

Although unfortunately there are times when programming only with pure functions and writing efficient code in Scala can be at odds, we are attempting to do our best at keeping our library as efficient as we can without making unnecessary sacrifices of purity and usability. Where sacrifices have to be made, we will strive to make these obvious, and will keep them well documented.

The cats ecosystem

Many projects integrate with cats. By sharing the same set of type classes, instances and data types, projects can speak the same "cats language", and integrate with each other with ease.

Generic libraries to support pure functional programming

  • Mouse: a small companion to cats that provides convenient syntax (aka extension methods)
  • Dogs: pure functional collections and data structures.
  • Kittens: automatic type class derivation for Cats and generic utility functions
  • eff: functional effects and effect handlers (alternative to monad transformers).
  • Freestyle: pure functional framework for Free and Tagless Final apps & libs.
  • mainecoon: Transform and compose tagless final encoded algebras
  • iota: Fast [co]product types with a clean syntax

Libraries with more specific uses

  • Circe: pure functional JSON library.
  • Fetch: efficient data access to heterogeneous data sources.
  • Frameless: Expressive types for Spark.
  • FS2: compositional, streaming I/O library
  • doobie: a pure functional JDBC layer for Scala
  • Monix: high-performance library for composing asynchronous and event-based programs.
  • http4s: A minimal, idiomatic Scala interface for HTTP
  • hammock: Purely functional HTTP client
  • atto: friendly little text parsers

Copyright and License

All code is available to you under the MIT license, available at http://opensource.org/licenses/mit-license.php and also in the COPYING file. The design is informed by many other projects, in particular Scalaz.

Copyright the maintainers, 2016.