react-multi-carousel vs react-responsive-carousel vs react-slick
React 用カルーセルライブラリの技術比較
react-multi-carouselreact-responsive-carouselreact-slick類似パッケージ:

React 用カルーセルライブラリの技術比較

react-multi-carouselreact-responsive-carouselreact-slick は、React アプリケーションでスライダーやカルーセル機能を実装するための代表的なライブラリです。これらは共通してタッチスワイプ、無限ループ、レスポンシブ対応を提供しますが、アーキテクチャと API デザインに明確な違いがあります。react-slick は長年の実績があるものの、内部で jQuery 由来のロジックを保持しており、パフォーマンス面で課題が残ります。react-responsive-carousel は機能性が豊富で、サムネイル表示などの複雑な要件に適しています。react-multi-carousel はパフォーマンスと SSR(サーバーサイドレンダリング)対応を重視し、モダンな React プロジェクトでの利用を想定して設計されています。

npmのダウンロードトレンド

3 年

GitHub Starsランキング

統計詳細

パッケージ
ダウンロード数
Stars
サイズ
Issues
公開日時
ライセンス
react-multi-carousel01,3541.63 MB2171年前MIT
react-responsive-carousel02,684188 kB5-MIT
react-slick011,934775 kB4897ヶ月前MIT

React 用カルーセルライブラリ:アーキテクチャと実装の比較

react-multi-carouselreact-responsive-carouselreact-slick は、すべて React 環境でカルーセル機能を提供するライブラリですが、内部構造と開発者体験(DX)に大きな違いがあります。単に「スライドする」だけでなく、SSR 対応、レスポンシブ設計、カスタマイズ性において、どのライブラリがプロジェクトの要件に合致するかを見極める必要があります。

🛠️ API デザインと設定方法

react-slick は、設定オブジェクトを settings プロパツとして渡す方式を採用しています。

  • 従来の Slick Carousel の設計思想を継承しています。
  • 設定項目が多く、タイプ定義が複雑になる傾向があります。
// react-slick: 設定オブジェクトを渡す
import Slider from "react-slick";

const settings = {
  dots: true,
  infinite: true,
  speed: 500,
  slidesToShow: 3,
};

<Slider {...settings}>
  <div>Content 1</div>
  <div>Content 2</div>
</Slider>;

react-responsive-carousel は、コンポーネントに直接プロパツを渡す直感的な API です。

  • 機能ごとにフラグ(showThumbsinfiniteLoop)をオンオフします。
  • 初期設定が簡単で、ボイラープレートが少ないです。
// react-responsive-carousel: 直接プロパツを指定
import { Carousel } from 'react-responsive-carousel';

<Carousel
  showThumbs={true}
  infiniteLoop={true}
  autoPlay={true}
>
  <div>Content 1</div>
  <div>Content 2</div>
</Carousel>;

react-multi-carousel は、responsive プロパツでブレークポイントを定義します。

  • デスクトップ、タブレット、モバイルで表示枚数を変えるのが容易です。
  • 関数コンポーネントとの相性が良く、フックとの併用もスムーズです。
// react-multi-carousel: レスポンシブ設定を重視
import Carousel from 'react-multi-carousel';

const responsive = {
  desktop: { breakpoint: { above: 1024, items: 3 } },
  tablet: { breakpoint: { above: 768, below: 1024, items: 2 } },
  mobile: { breakpoint: { below: 768, items: 1 } }
};

<Carousel responsive={responsive}>
  <div>Content 1</div>
  <div>Content 2</div>
</Carousel>;

📱 レスポンシブブレークポイントの扱い

レスポンシブ対応は、カルーセルライブラリ選定における重要な判断基準です。

react-slickslidesToShow を動的に変更するために、ウィンドウリサイズイベントを監視する必要があります。

  • 設定オブジェクト内で responsive 配列を定義できますが、動作が重くなることがあります。
  • ブレークポイントの管理が少し煩雑になる場合があります。
// react-slick: responsive 配列で定義
const settings = {
  responsive: [
    {
      breakpoint: 1024,
      settings: { slidesToShow: 2 }
    },
    {
      breakpoint: 600,
      settings: { slidesToShow: 1 }
    }
  ]
};

react-responsive-carousel は、CSS に依存したレスポンシブ対応が基本です。

  • 表示枚数の制御よりも、画像のサイズ調整に適しています。
  • 複雑な「表示枚数変更」には追加のロジックが必要になることがあります。
// react-responsive-carousel: CSS で制御
// 追加のラッパーや CSS メディアクエリで調整することが多い
<Carousel className="custom-carousel">
  {/* CSS で .custom-carousel .slide { width: 33% } など */}
</Carousel>;

react-multi-carousel は、この課題のために設計されたと言えます。

  • responsive オブジェクトで明確にアイテム数を定義できます。
  • 内部で効率的にウィンドウサイズを監視し、再レンダリングを最適化します。
// react-multi-carousel: 明示的なブレークポイント
const responsive = {
  superLargeDesktop: { breakpoint: { above: 4000, items: 5 } },
  desktop: { breakpoint: { above: 1024, items: 3 } },
  mobile: { breakpoint: { below: 768, items: 1 } }
};

<Carousel responsive={responsive} />;

☁️ SSR とハイドレーション

モダンな Web 開発では、サーバーサイドレンダリング(SSR)対応が必須です。

react-slick は SSR 対応に課題を抱えています。

  • サーバーとクライアントで DOM 構造が一致せず、ハイドレーションエラーが発生しやすいです。
  • ssr プロパツがありますが、完全な解決にはならない場合があります。
// react-slick: SSR 対応フラグ
<Slider ssr={true} slidesToShow={3}>
  {/* ハイドレーションミスマッチのリスクがある */}
</Slider>;

react-responsive-carousel は、SSR 対応を意識した設計ですが、制限があります。

  • 一部の機能がクライアントサイドでのみ動作します。
  • 動的なインポート(next/dynamic など)でラップする必要が出ることがあります。
// react-responsive-carousel: 動的インポートで回避
const DynamicCarousel = dynamic(() => import('...'), { ssr: false });

<DynamicCarousel>
  {/* クライアント側でのみレンダリング */}
</DynamicCarousel>;

react-multi-carousel は、SSR を第一優先に設計されています。

  • サーバーとクライアントで同じ HTML を生成するように工夫されています。
  • Next.js や Gatsby との相性が最も良いライブラリです。
// react-multi-carousel: 自然な SSR 対応
// 特別な設定なしで SSR 環境で動作することを想定
<Carousel responsive={responsive} ssr={true}>
  {/* ハイドレーションエラーが起きにくい */}
</Carousel>;

🎨 カスタマイズ(矢印とドット)

デザインシステムに合わせるためのカスタマイズ性も重要です。

react-slick は、prevArrownextArrow コンポーネントを渡してカスタマイズします。

  • 完全な制御が可能ですが、実装が少し冗長になります。
  • ドットのカスタマイズも同様にコンポーネントを渡します。
// react-slick: カスタム矢印
const PrevArrow = (props) => <button {...props}>Prev</button>;

<Slider prevArrow={<PrevArrow />} nextArrow={<NextArrow />}>
  {/* ... */}
</Slider>;

react-responsive-carousel は、レンダリングプロパツ(renderArrowrenderIndicator)を提供します。

  • 関数を渡して JSX を返す方式で、柔軟性が高いです。
  • サムネイルのカスタマイズも容易です。
// react-responsive-carousel: レンダリング関数
<Carousel
  renderArrow={(clickHandler, hasNext, label) => (
    <button onClick={clickHandler}>{label}</button>
  )}
>
  {/* ... */}
</Carousel>;

react-multi-carousel は、customDotcustomArrow プロパツで制御します。

  • 状態(onClickactive)がプロパツとして渡されるため、実装が明確です。
  • TypeScript の型定義もしっかりしており、開発支援が効きます。
// react-multi-carousel: カスタムコンポーネント
<Carousel
  customDot={<CustomDot />}
  customArrow={<CustomArrow />}
>
  {/* ... */}
</Carousel>;

🤝 共通点:ライブラリ間の類似性

違いは明確ですが、これら 3 つのライブラリには共通する基盤技術もあります。

1. ⚛️ React コンポーネントベース

  • すべてが React のコンポーネントとして提供されます。
  • 状態管理は内部で完結しており、外部の状態管理ライブラリは不要です。
// すべて共通:children としてスライド内容を渡す
<Carousel>
  <div>Slide 1</div>
  <div>Slide 2</div>
</Carousel>;

2. 👆 タッチスワイプ対応

  • モバイルデバイスでのスワイプ操作に標準で対応しています。
  • 追加の設定なしで、直感的な操作感を提供します。
// すべて共通:追加設定なしでスワイプ可能
// 内部で touch イベントをリスニングしている

3. 🔄 無限ループ機能

  • 最後のスライドから最初のスライドへ滑らかに遷移する機能を持っています。
  • infinite または infiniteLoop プロパツで有効化します。
// react-slick
<Slider infinite={true} />

// react-responsive-carousel
<Carousel infiniteLoop={true} />

// react-multi-carousel
<Carousel infinite={true} />

📊 比較サマリー

機能react-slickreact-responsive-carouselreact-multi-carousel
API 設計設定オブジェクト直接プロパツレスポンシブ重視
SSR 対応⚠️ 課題あり🟡 部分的対応✅ 最適化済み
レスポンシブ配列で定義CSS 依存ブレークポイントオブジェクト
カスタマイズコンポーネント置換レンダリング関数カスタムコンポーネント
メンテナンス🐢 更新頻度低下🟢 安定🟢 活発

💡 最終推奨

react-multi-carousel は、モダンな React アプリケーション — 特に Next.js や Remix を使用する場合 — における最も堅実な選択です。SSR 対応とパフォーマンスが保証されており、将来的な技術的負債を減らせます。

react-responsive-carousel は、サムネイル機能など特定の UI 要件がすぐに必要な場合や、プロトタイプを素早く作成したい場合に有効です。機能の豊富さは魅力的ですが、SSR 環境では注意が必要です。

react-slick は、既存のレガシーコードとの互換性が必要な場合を除き、新規プロジェクトでの採用は避けるべきです。メンテナンスの停滞と SSR の課題は、長期的なコストになります。

結論:パフォーマンスと将来性を重視するなら react-multi-carousel 一択です。機能の即時性を求めるなら react-responsive-carousel を検討し、react-slick は移行計画を立てて代替することをお勧めします。

選び方: react-multi-carousel vs react-responsive-carousel vs react-slick

  • react-multi-carousel:

    パフォーマンスと SSR 対応が最優先の場合に選択します。Next.js や Remix などのモダンフレームワークを使用し、ハイドレーションエラーを避けたいプロジェクトに適しています。ブレークポイントベースのレスポンシブ設定が必要な場合もこれ一択です。

  • react-responsive-carousel:

    サムネイル機能や無限ループなど、豊富な機能をすぐに使いたい場合に選択します。設定がシンプルで、ドキュメントも充実しているため、学習コストを抑えたいチームに向いています。

  • react-slick:

    既存プロジェクトでの移行や、Slick Carousel との互換性が必要な場合に選択します。ただし、新規プロジェクトではパフォーマンスとメンテナンスの観点から、他の代替案を検討することを推奨します。

react-multi-carousel のREADME

react-multi-carousel 👋

Financial Contributors on Open Collective All Contributors

Production-ready, lightweight fully customizable React carousel component that rocks supports multiple items and SSR(Server-side rendering).

Package Quality npm version download per month Build Status Documentation Maintenance License: MIT FOSSA Status David Dependancy Status Known Vulnerabilities

demo

demo

Hello world!

We are on a very excited journey towards version 3.0 of this component which will be rewritten in hooks/context completely. It means smaller bundle size, performance improvement and easier customization of the component and so many more benefits.

It would mean so much if you could provide help towards the further development of this project as we do this open source work in our own free time especially during this covid-19 crisis.

If you are using this component seriously, please donate or talk to your manager as this project increases your income too. It will help us make releases, fix bugs, fulfill new feature requests faster and better.

Become a backer/sponsor to get your logo/image on our README on Github with a link to your site.

Features.

  • Server-side rendering
  • Infinite mode
  • Dot mode
  • Custom animation
  • AutoPlay mode
  • Auto play interval
  • Supports images, videos, everything.
  • Responsive
  • Swipe to slide
  • Mouse drag to slide
  • Keyboard control to slide
  • Multiple items
  • Show / hide arrows
  • Custom arrows / control buttons
  • Custom dots
  • Custom styling
  • Accessibility support
  • Center mode.
  • Show next/previous set of items partially
  • RTL support

Shoutouts 🙏

BrowserStack Logo

Big thanks to BrowserStack for letting the maintainers use their service to debug browser issues.

Documentation

Other important links.

Bundle size

Bundle-size. 2.5kB

Demo.

Documentation is here.

Demo for the SSR https://react-multi-carousel.now.sh/

Try to disable JavaScript to test if it renders on the server-side.

Codes for SSR at github.

Codes for the documentation at github.

Install

$ npm install react-multi-carousel --save

import Carousel from 'react-multi-carousel';
import 'react-multi-carousel/lib/styles.css';

How the SSR mode works?

Codes for SSR at github.

  • Demo for the SSR are at here
  • Try to disable JavaScript to test if it renders on the server-side.

Here is a lighter version of the library for detecting the user's device type alternative

You can choose to only bundle it on the server-side.

Minimum working set up.

import Carousel from "react-multi-carousel";
import "react-multi-carousel/lib/styles.css";
const responsive = {
  superLargeDesktop: {
    // the naming can be any, depends on you.
    breakpoint: { max: 4000, min: 3000 },
    items: 5
  },
  desktop: {
    breakpoint: { max: 3000, min: 1024 },
    items: 3
  },
  tablet: {
    breakpoint: { max: 1024, min: 464 },
    items: 2
  },
  mobile: {
    breakpoint: { max: 464, min: 0 },
    items: 1
  }
};
<Carousel responsive={responsive}>
  <div>Item 1</div>
  <div>Item 2</div>
  <div>Item 3</div>
  <div>Item 4</div>
</Carousel>;

Common Usage

import Carousel from "react-multi-carousel";
import "react-multi-carousel/lib/styles.css";

const responsive = {
  desktop: {
    breakpoint: { max: 3000, min: 1024 },
    items: 3,
    slidesToSlide: 3 // optional, default to 1.
  },
  tablet: {
    breakpoint: { max: 1024, min: 464 },
    items: 2,
    slidesToSlide: 2 // optional, default to 1.
  },
  mobile: {
    breakpoint: { max: 464, min: 0 },
    items: 1,
    slidesToSlide: 1 // optional, default to 1.
  }
};
<Carousel
  swipeable={false}
  draggable={false}
  showDots={true}
  responsive={responsive}
  ssr={true} // means to render carousel on server-side.
  infinite={true}
  autoPlay={this.props.deviceType !== "mobile" ? true : false}
  autoPlaySpeed={1000}
  keyBoardControl={true}
  customTransition="all .5"
  transitionDuration={500}
  containerClass="carousel-container"
  removeArrowOnDeviceType={["tablet", "mobile"]}
  deviceType={this.props.deviceType}
  dotListClass="custom-dot-list-style"
  itemClass="carousel-item-padding-40-px"
>
  <div>Item 1</div>
  <div>Item 2</div>
  <div>Item 3</div>
  <div>Item 4</div>
</Carousel>;

Custom Arrows.

You can pass your own custom arrows to make it the way you want, the same for the position. For example, add media query for the arrows to go under when on smaller screens.

Your custom arrows will receive a list of props/state that's passed back by the carousel such as the currentSide, is dragging or swiping in progress.

Code

const CustomRightArrow = ({ onClick, ...rest }) => {
  const {
    onMove,
    carouselState: { currentSlide, deviceType }
  } = rest;
  // onMove means if dragging or swiping in progress.
  return <button onClick={() => onClick()} />;
};
<Carousel customRightArrow={<CustomRightArrow />} />;

Custom button group.

This is very useful if you don't want the dots, or arrows and you want to fully customize the control functionality and styling yourself.

Code

const ButtonGroup = ({ next, previous, goToSlide, ...rest }) => {
  const { carouselState: { currentSlide } } = rest;
  return (
    <div className="carousel-button-group"> // remember to give it position:absolute
      <ButtonOne className={currentSlide === 0 ? 'disable' : ''} onClick={() => previous()} />
      <ButtonTwo onClick={() => next()} />
      <ButtonThree onClick={() => goToSlide(currentSlide + 1)}> Go to any slide </ButtonThree>
    </div>
  );
};
<Carousel arrows={false} customButtonGroup={<ButtonGroup />}>
  <ItemOne>
  <ItemTwo>
</Carousel>

renderButtonGroupOutside

Passing this props would render the button group outside of the Carousel container. This is done using React.fragment

<div className='my-own-custom-container'>
  <Carousel arrows={false} renderButtonGroupOutside={true} customButtonGroup={<ButtonGroup />}>
    <ItemOne>
    <ItemTwo>
  </Carousel>
</div>

Custom dots.

You can pass your own custom dots to replace the default one.

Custom dots can also be a copy or an image of your carousel item. See example in this one

The codes for this example

You custom dots will receive a list of props/state that's passed back by the carousel such as the currentSide, is dragging or swiping in progress.

Code

const CustomDot = ({ onClick, ...rest }) => {
  const {
    onMove,
    index,
    active,
    carouselState: { currentSlide, deviceType }
  } = rest;
  const carouselItems = [CarouselItem1, CaourselItem2, CarouselItem3];
  // onMove means if dragging or swiping in progress.
  // active is provided by this lib for checking if the item is active or not.
  return (
    <button
      className={active ? "active" : "inactive"}
      onClick={() => onClick()}
    >
      {React.Children.toArray(carouselItems)[index]}
    </button>
  );
};
<Carousel showDots customDot={<CustomDot />}>
  {carouselItems}
</Carousel>;

renderDotsOutside

Passing this props would render the dots outside of the Carousel container. This is done using React.fragment

<div className='my-own-custom-container'>
  <Carousel arrows={false} showDots={true} renderDotsOutside={renderButtonGroupOutside}>
    <ItemOne>
    <ItemTwo>
  </Carousel>
</div>

partialVisible props.

Shows the next items partially, this is very useful if you want to indicate to the users that this carousel component is swipable, has more items behind it.

This is different from the "centerMode" prop, as it only shows the next items. For the centerMode, it shows both.

const responsive = {
  desktop: {
    breakpoint: { max: 3000, min: 1024 },
    items: 3,
    partialVisibilityGutter: 40 // this is needed to tell the amount of px that should be visible.
  },
  tablet: {
    breakpoint: { max: 1024, min: 464 },
    items: 2,
    partialVisibilityGutter: 30 // this is needed to tell the amount of px that should be visible.
  },
  mobile: {
    breakpoint: { max: 464, min: 0 },
    items: 1,
    partialVisibilityGutter: 30 // this is needed to tell the amount of px that should be visible.
  }
}
<Carousel partialVisible={true} responsive={responsive}>
  <ItemOne />
  <ItemTwo />
</Carousel>

centerMode

Shows the next items and previous items partially.

<Carousel centerMode={true} />

afterChange callback.

This is a callback function that is invoked each time when there has been a sliding.

<Carousel
  afterChange={(previousSlide, { currentSlide, onMove }) => {
    doSpeicalThing();
  }}
/>

beforeChange call back

This is a callback function that is invoked each time before a sliding.

<Carousel
  beforeChange={(nextSlide, { currentSlide, onMove }) => {
    doSpeicalThing();
  }}
/>

Combine beforeChange and nextChange, real usage.

They are very useful in the following cases:

  • The carousel item is clickable, but you don't want it to be clickable while the user is dragging it or swiping it.
<Carousel
  beforeChange={() => this.setState({ isMoving: true })}
  afterChange={() => this.setState({ isMoving: false })}
>
  <a
    onClick={e => {
      if (this.state.isMoving) {
        e.preventDefault();
      }
    }}
    href="https://w3js.com"
  >
    Click me
  </a>
</Carousel>
  • Preparing for the next slide.
<Carousel beforeChange={nextSlide => this.setState({ nextSlide: nextSlide })}>
  <div>Initial slide</div>
  <div
    onClick={() => {
      if (this.state.nextSlide === 1) {
        doVerySpecialThing();
      }
    }}
  >
    Second slide
  </div>
</Carousel>

Skipping callbacks

When calling the goToSlide function on a Carousel the callbacks will be run by default. You can skip all or individul callbacks by passing a second parameter to goToSlide.

this.Carousel.goToSlide(1, true); // Skips both beforeChange and afterChange
this.Carousel.goToSlide(1, { skipBeforeChange: true }); // Skips only beforeChange
this.Carousel.goToSlide(1, { skipAfterChange: true }); // Skips only afterChange

focusOnSelect

Go to slide on click and make the slide a current slide.

<Carousel focusOnSelect={true} />

Using ref.

<Carousel ref={(el) => (this.Carousel = el)} arrows={false} responsive={responsive}>
  <ItemOne />
  <ItemTwo />
</Carousel>
<button onClick={() => {
    const nextSlide = this.Carousel.state.currentSlide + 1;
     // this.Carousel.next()
     // this.Carousel.goToSlide(nextSlide)
  }}>Click me</button>

additionalTransfrom Props.

This is very useful when you are fully customizing the control functionality by yourself like this one

Code

For example if you give to your carousel item padding left and padding right 20px. And you have 5 items in total, you might want to do the following:

<Carousel ref={el => (this.Carousel = el)} additionalTransfrom={-20 * 5} /> // it needs to be a negative number

Specific Props

NameTypeDefaultDescription
responsiveobject{}Numbers of slides to show at each breakpoint
deviceTypestring''Only pass this when use for server-side rendering, what to pass can be found in the example folder
ssrbooleanfalseUse in conjunction with responsive and deviceType prop
slidesToSlideNumber1How many slides to slide.
draggablebooleantrueOptionally disable/enable dragging on desktop
swipeablebooleantrueOptionally disable/enable swiping on mobile
arrowsbooleantrueHide/Show the default arrows
renderArrowsWhenDisabledbooleanfalseAllow for the arrows to have a disabled attribute instead of not showing them
removeArrowOnDeviceTypestring or array''Hide the default arrows at different break point, should be used with responsive props. Value could be mobile or ['mobile', 'tablet'], can be a string or array
customLeftArrowjsxnullReplace the default arrow with your own
customRightArrowjsxnullReplace the default arrow with your own
customDotjsxnullReplace the default dots with your own
customButtonGroupjsxnullFully customize your own control functionality if you don't want arrows or dots
infinitebooleanfalseEnables infinite scrolling in both directions. Carousel items are cloned in the DOM to achieve this.
minimumTouchDragnumber50The amount of distance to drag / swipe in order to move to the next slide.
afterChangefunctionnullA callback after sliding everytime.
beforeChangefunctionnullA callback before sliding everytime.
sliderClassstring'react-multi-carousel-track'CSS class for inner slider div, use this to style your own track list.
itemClassstring''CSS class for carousel item, use this to style your own Carousel item. For example add padding-left and padding-right
containerClassstring'react-multi-carousel-list'Use this to style the whole container. For example add padding to allow the "dots" or "arrows" to go to other places without being overflown.
dotListClassstring'react-multi-carousel-dot-list'Use this to style the dot list.
keyBoardControlbooleantrueUse keyboard to navigate to next/previous slide
autoPlaybooleanfalseAuto play
autoPlaySpeednumber3000The unit is ms
showDotsbooleanfalseHide the default dot list
renderDotsOutsidebooleanfalseShow dots outside of the container
partialVisiblebooleanstringfalse
customTransitionstringtransform 300ms ease-in-outConfigure your own anaimation when sliding
transitionDuration`number300The unit is ms, if you are using customTransition, make sure to put the duration here as this is needed for the resizing to work.
focusOnSelectbooleanfalseGo to slide on click and make the slide a current slide.
centerModebooleanfalseShows the next items and previous items partially.
additionalTransfromnumber0additional transfrom to the current one.
shouldResetAutoplaybooleantrueresets autoplay when clicking next, previous button and the dots
rewindbooleanfalseif infinite is not enabled and autoPlay explicitly is, this option rewinds the carousel when the end is reached (Lightweight infinite mode alternative without cloning).
rewindWithAnimationbooleanfalsewhen rewinding the carousel back to the beginning, this decides if the rewind process should be instant or with transition.
rtlbooleanfalseSets the carousel direction to be right to left

Author

👤 Yi Zhuang

🤝 Contribute

Please read https://github.com/YIZHUANG/react-multi-carousel/blob/master/contributing.md

Submit an issue for feature request or submit a pr.

Local development.

  • cd app
  • npm install
  • npm run dev

Donation

If this project help you reduce time to develop, you can give me a cup of coffee :)

paypal

Contributors

Code Contributors

This project exists thanks to all the people who contribute. [Contribute].

Financial Contributors

Become a financial contributor and help us sustain our community. [Contribute]

Individuals

Organizations

Support this project with your organization. Your logo will show up here with a link to your website. [Contribute]

License

FOSSA Status

Contributors ✨

Thanks goes to these wonderful people (emoji key):


Truong Hoang Dung

💻

Tobias Pinnekamp

💻

Rajendran Nadar

💻

Abhinav Dalal

💻

Oscar Barrett

💻

Neamat Mim

💻

Martin Retrou

💻

Ben Hodgson

💻

Faizan ul haq

💻

Adrian3PG

💻

kuznetsovgm

💻

Vadim Filimonov

📖

Romain

💻

Riley Lundquist

💻

Paul Deshaies Jr

💻

Pavel Mikheev

💻

nev1d

💻

Mads Vammen

💻

Jiro Farah

💻

This project follows the all-contributors specification. Contributions of any kind welcome!