Giter VIP home page Giter VIP logo

cats's Introduction

Cats

cats image

Build Status Workflow Chat codecov.io Latest version Scala.js

Overview

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.

Scala supports both object-oriented and functional programming, and this is reflected in the hybrid approach of the standard library. Cats strives to provide functional programming abstractions that are core, binary compatible, modular, approachable and efficient. A broader goal of Cats is to provide a foundation for an ecosystem of pure, typeful libraries to support functional programming in Scala applications.

For more detail about Cats' motivations, go here.

Getting Started

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

Cats relies on improved type inference via the fix for SI-2712, which is not enabled by default. For Scala 2.11.9 or later you should add the following to your build.sbt:

scalacOptions += "-Ypartial-unification"

Or, if you need to support older versions of Scala you can use the sbt-partial-unification plugin which extends support back through Scala 2.10.6 or later, to add it, simply add this line to your plugins.sbt:

addSbtPlugin("org.lyranthe.sbt" % "partial-unification" % "1.1.0")

And then create the cats dependency, by adding the following to your build.sbt:

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

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 type class instances using laws.
  • alleycats-core: cats instances and classes which are not lawful.

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

  • cats-effect: standard IO type together with Sync, Async and Effect type classes
  • cats-mtl: transformer typeclasses for cats' Monads, Applicatives and Functors.
  • mouse: a small companion to cats that provides convenient syntax (aka extension methods)

Release notes for Cats are available in CHANGES.md.

Cats is still under active development. While we don't anticipate any major redesigns, changes that are neither source nor binary compatible are to be expected in upcoming RC1 and 1.0 releases.

The cats ecosystem

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

General purpose libraries to support pure functional programming

  • Dogs: pure functional collections and data structures
  • eff: functional effects and effect handlers (alternative to monad transformers)
  • Freestyle: pure functional framework for Free and Tagless Final apps & libs
  • iota: Fast [co]product types with a clean syntax
  • Kittens: automatic type class derivation for Cats and generic utility functions
  • mainecoon: Transform and compose tagless final encoded algebras
  • Monocle: an optics library for Scala (and Scala.js) strongly inspired by Haskell Lens.
  • newts: Defines newtypes compatible with cats type classes
  • origami: monadic folds
  • refined: simple refinement types for Scala

Libraries with more specific uses

  • atto: friendly little text parsers
  • circe: pure functional JSON library
  • decline: A composable command-line parser
  • doobie: a pure functional JDBC layer for Scala
  • Fetch: efficient data access to heterogeneous data sources
  • finch: Scala combinator library for building Finagle HTTP services
  • Frameless: Expressive types for Spark
  • FS2: compositional, streaming I/O library
  • grafter: dependency-injection library using the Reader pattern
  • hammock: Purely functional HTTP client
  • henkan: Type safe conversion between case class instances with similar fields
  • http4s: A minimal, idiomatic Scala interface for HTTP
  • monadic-html: Tiny DOM binding library for Scala.js
  • Monix: high-performance library for composing asynchronous and event-based programs
  • pureconfig: A boilerplate-free library for loading configuration files
  • scanamo: simpler DynamoDB access for Scala
  • seals: tools for schema evolution and language-integrated schemata
  • tsec: Typesafe, functional, general purpose cryptography and security library.
  • extruder: Populate case classes from any data source

Feel free to submit a PR if you want a project you maintain to be added to this list.

The full-size cats logo is available for use for Cats related projects, contents, souvenirs, etc.

How can I contribute to Cats?

We welcome contributions to Cats and would love for you to help build Cats. See our contributor guide for more information about how you can get involved.

Community

Discussion around Cats is currently happening on Github issue and PR pages as well as in two Gitter channels:

Gitter channel cats is for general user questions and discussions, and

Gitter channel cats-dev is dedicated for cats development related discussions. For people who wants to follow closely and/or to participate in the decisions in cats development, this is the room to join.

You can get an overview of who is working on what via Waffle.io.

People are expected to follow the Typelevel Code of Conduct when discussing Cats on the Github page, Gitter channel, or other venues.

We hope that our community will be respectful, helpful, and kind. If you find yourself embroiled in a situation that becomes heated, or that fails to live up to our expectations, you should disengage and contact one of the project maintainers in private. We hope to avoid letting minor aggressions and misunderstandings escalate into larger problems.

If you are being harassed, please contact one of us immediately so that we can support you.

Binary compatibility and versioning

After 1.0.0 release, we decided to use MAJOR.MINOR.PATCH Semantic Versioning 2.0.0 going forward, which is different from the EPOCH.MAJOR.MINOR scheme common among Java and Scala libraries (including the Scala lang).

Cats strives to provide a solid and stable foundation for an ecosystem of FP libraries. Thus, we treat backward binary compatibility maintenance with a high priority. In semantic versioning, backward breaking change is ONLY allowed between MAJOR versions. We will maintain backward binary compatibility between PATCH AND MINOR versions. For example, when we release cats 1.1.0, it will be backward binary compatible with the previous 1.0.x versions. I.E. the new JAR will be a drop-in replacement for the old one. This is critical when your application has a diamond dependency on Cats - depending on two or more libraries that all depend on Cats. If one library upgrades to the new 1.1.0 Cats before the other one does, your application still runs thanks to this backward binary compatibility.

Also worth noting is that according to semantic versioning, MINOR version Y (x.Y.z | x > 0) MUST be incremented if new, backwards compatible functionality is introduced to the public API. It MUST be incremented if any public API functionality is marked as deprecated.

Any binary breaking changes will require a MAJOR version bump, which we will be very cautious about. We will also consider using organization and package name for major versioning in the future. But that decision is yet to be made.

Maintainers

The current maintainers (people who can merge pull requests) are:

We are currently following a practice of requiring at least two sign-offs to merge PRs (and for large or contentious issues we may wait for more). For typos or other small fixes to documentation we relax this to a single sign-off.

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, 2015-2017.

cats's People

Contributors

adelbertc avatar alistair-johnson avatar ceedubs avatar djspiewak avatar dwijnand avatar edmundnoble avatar eed3si9n avatar erik-stripe avatar fthomas avatar juanpedromoreno avatar julien-truffaut avatar julienrf avatar kailuowang avatar lukewyman avatar mandubian avatar mikejcurry avatar milessabin avatar mpilquist avatar non avatar oscar-stripe avatar paradigmsort avatar peterneyens avatar raulraja avatar rintcius avatar rossabaker avatar stephenjudkins avatar stew avatar travisbrown avatar yilinwei avatar zainab-ali avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.