Convert Figma logo to code with AI

prabhuignoto logoreact-chrono

🕑 Modern Timeline Component for React

3,902
207
3,902
56

Top Related Projects

13,142

nivo provides a rich set of dataviz components, built on top of the awesome d3 and React libraries

23,884

Redefined chart library built with React and D3

10,987

A collection of composable React components for building interactive data visualizations

19,429

🐯 visx | visualization components

📊 Interactive JavaScript Charts built on SVG

Quick Overview

React-Chrono is a flexible and customizable timeline component for React applications. It allows developers to create interactive timelines with various layouts, themes, and customization options, making it suitable for displaying historical events, project milestones, or any chronological data.

Pros

  • Highly customizable with multiple layout options (vertical, horizontal, tree)
  • Supports various media types (images, videos, cards) within timeline items
  • Responsive design and mobile-friendly
  • Well-documented with TypeScript support

Cons

  • Limited animation options for timeline transitions
  • May require additional styling for complex use cases
  • Large bundle size compared to simpler timeline libraries
  • Limited built-in accessibility features

Code Examples

  1. Basic timeline setup:
import { Chrono } from "react-chrono";

const items = [
  { title: "May 1940", cardTitle: "Dunkirk", cardSubtitle: "Men of the British Expeditionary Force (BEF) wade out to a destroyer during the evacuation from Dunkirk." },
  { title: "25 July 1940", cardTitle: "The Battle of Britain", cardSubtitle: "RAF Spitfire pilots scramble for their planes" },
  { title: "June 1941", cardTitle: "Operation Barbarossa", cardSubtitle: "A column of Red Army prisoners of war taken during the first days of the German invasion" },
];

const Timeline = () => (
  <Chrono items={items} mode="VERTICAL" />
);
  1. Customizing timeline appearance:
<Chrono
  items={items}
  mode="HORIZONTAL"
  theme={{
    primary: "#0077B6",
    secondary: "#48CAE4",
    cardBgColor: "#CAF0F8",
    titleColor: "#03045E",
  }}
  cardHeight={200}
  slideItemDuration={1000}
/>
  1. Adding media to timeline items:
const itemsWithMedia = [
  {
    title: "1969",
    cardTitle: "Moon Landing",
    cardSubtitle: "Neil Armstrong becomes the first human to step on the Moon",
    media: {
      type: "IMAGE",
      source: {
        url: "https://example.com/moon-landing.jpg"
      }
    }
  },
  // ... more items
];

<Chrono items={itemsWithMedia} mode="VERTICAL_ALTERNATING" />

Getting Started

  1. Install the package:

    npm install react-chrono
    
  2. Import and use in your React component:

    import React from 'react';
    import { Chrono } from 'react-chrono';
    
    const MyTimeline = () => {
      const items = [
        { title: "2020", cardTitle: "Event 1", cardSubtitle: "Event 1 Description" },
        { title: "2021", cardTitle: "Event 2", cardSubtitle: "Event 2 Description" },
        { title: "2022", cardTitle: "Event 3", cardSubtitle: "Event 3 Description" },
      ];
    
      return (
        <div style={{ width: '500px', height: '400px' }}>
          <Chrono items={items} mode="VERTICAL" />
        </div>
      );
    };
    
    export default MyTimeline;
    

Competitor Comparisons

13,142

nivo provides a rich set of dataviz components, built on top of the awesome d3 and React libraries

Pros of nivo

  • Offers a wide variety of chart types and data visualization options
  • Highly customizable with extensive documentation and examples
  • Built with React and D3, providing powerful and interactive visualizations

Cons of nivo

  • Steeper learning curve due to its extensive feature set
  • May be overkill for simple timeline or chronological data representation
  • Larger bundle size compared to more focused libraries

Code Comparison

nivo example (Bar Chart):

import { ResponsiveBar } from '@nivo/bar'

const MyChart = () => (
  <ResponsiveBar
    data={data}
    keys={['hot dog', 'burger', 'sandwich', 'kebab', 'fries', 'donut']}
    indexBy="country"
    margin={{ top: 50, right: 130, bottom: 50, left: 60 }}
    padding={0.3}
    colors={{ scheme: 'nivo' }}
  />
)

react-chrono example (Timeline):

import { Chrono } from "react-chrono";

const MyTimeline = () => (
  <Chrono
    items={items}
    mode="VERTICAL"
    slideShow
    slideItemDuration={2000}
    slideShowInterval={5000}
  />
)

While nivo provides a comprehensive solution for various data visualizations, react-chrono focuses specifically on timeline representations. nivo offers more flexibility but requires more setup, whereas react-chrono provides a simpler API for creating timelines quickly.

23,884

Redefined chart library built with React and D3

Pros of recharts

  • More comprehensive charting library with various chart types (line, bar, area, etc.)
  • Higher GitHub stars and wider community adoption
  • Extensive documentation and examples

Cons of recharts

  • Steeper learning curve due to more complex API
  • Larger bundle size, which may impact performance for simpler use cases

Code Comparison

react-chrono (Timeline component):

<Chrono items={items} mode="VERTICAL" />

recharts (LineChart component):

<LineChart width={400} height={400} data={data}>
  <Line type="monotone" dataKey="uv" stroke="#8884d8" />
  <CartesianGrid stroke="#ccc" />
  <XAxis dataKey="name" />
  <YAxis />
</LineChart>

Summary

recharts is a more feature-rich charting library suitable for various data visualization needs, while react-chrono focuses specifically on timeline components. recharts offers greater flexibility but may be overkill for simple timeline requirements. react-chrono provides a more straightforward API for timeline creation but lacks the versatility of recharts for other chart types.

10,987

A collection of composable React components for building interactive data visualizations

Pros of Victory

  • Comprehensive charting library with a wide range of chart types
  • Highly customizable with extensive API and theming options
  • Strong community support and regular updates

Cons of Victory

  • Steeper learning curve due to its extensive features
  • Larger bundle size compared to more focused libraries
  • May be overkill for simple timeline or chronological visualizations

Code Comparison

Victory (creating a simple line chart):

import { VictoryChart, VictoryLine, VictoryAxis } from 'victory';

<VictoryChart>
  <VictoryLine data={[{x: 1, y: 2}, {x: 2, y: 3}, {x: 3, y: 5}]} />
  <VictoryAxis />
</VictoryChart>

react-chrono (creating a simple timeline):

import { Chrono } from "react-chrono";

<Chrono items={[
  { title: "May 1940", cardTitle: "Dunkirk", cardSubtitle: "Men of the British Expeditionary Force (BEF) wade out to..." },
  { title: "May 1940", cardTitle: "Dunkirk", cardSubtitle: "Men of the British Expeditionary Force (BEF) wade out to..." },
]} />

While Victory offers a comprehensive solution for various chart types, react-chrono provides a more focused and easier-to-use option for timeline visualizations. Victory's flexibility comes at the cost of complexity, whereas react-chrono offers a simpler API for its specific use case.

19,429

🐯 visx | visualization components

Pros of visx

  • More comprehensive data visualization library with a wide range of chart types and components
  • Highly customizable and flexible, allowing for complex and interactive visualizations
  • Backed by Airbnb, with a larger community and more frequent updates

Cons of visx

  • Steeper learning curve due to its extensive API and lower-level components
  • Requires more setup and configuration for basic use cases
  • May be overkill for simple timeline or chronological visualizations

Code Comparison

react-chrono:

<Chrono items={items} mode="VERTICAL" />

visx:

<XYChart height={300} xScale={{ type: 'band' }} yScale={{ type: 'linear' }}>
  <BarSeries dataKey="bar" data={data} />
  <Axis orientation="bottom" />
  <Axis orientation="left" />
</XYChart>

Summary

react-chrono is a specialized library for creating timeline components, offering a simpler API and easier implementation for chronological data visualization. visx, on the other hand, is a more powerful and versatile data visualization library that can be used for various chart types, including timelines. While react-chrono is more suitable for quick timeline implementations, visx provides greater flexibility and customization options for complex data visualizations across different chart types.

📊 Interactive JavaScript Charts built on SVG

Pros of ApexCharts.js

  • Offers a wide variety of chart types and customization options
  • Supports responsive and interactive charts out of the box
  • Has extensive documentation and a large community

Cons of ApexCharts.js

  • Larger file size compared to React Chrono
  • May have a steeper learning curve for complex visualizations
  • Not specifically designed for timeline or chronological data

Code Comparison

React Chrono:

<Chrono items={items} mode="VERTICAL" />

ApexCharts.js:

var options = {
  chart: { type: 'line' },
  series: [{ data: [30, 40, 35, 50, 49, 60, 70] }],
  xaxis: { categories: [1991, 1992, 1993, 1994, 1995, 1996, 1997] }
};
var chart = new ApexCharts(document.querySelector("#chart"), options);
chart.render();

While React Chrono is specifically designed for creating timelines with a simple API, ApexCharts.js offers more versatility for various chart types but requires more configuration. React Chrono is more focused and easier to use for timeline-specific visualizations, while ApexCharts.js provides broader charting capabilities at the cost of increased complexity.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README



Build Status DeepScan grade Codacy Badge react-chrono Known Vulnerabilities Depfu npm bundle size styled with Prettier License npm version npm downloads Coverage Status

Features

Table of Contents

⚡ Installation

// install with yarn
yarn add react-chrono

// or with npm
npm install react-chrono

Getting Started

Please make sure you wrap the component in a container that has a width and height.

When no mode is specified, the component defaults to HORIZONTAL mode. Please check props for all the available options.

  import React from "react"
  import { Chrono } from "react-chrono";

  const Home = () => {
    const items = [{
      title: "May 1940",
      cardTitle: "Dunkirk",
      url: "http://www.history.com",
      cardSubtitle:"Men of the British Expeditionary Force (BEF) wade out to..",
      cardDetailedText: "Men of the British Expeditionary Force (BEF) wade out to..",
      media: {
        type: "IMAGE",
        source: {
          url: "http://someurl/image.jpg"
        }
      }
    }, ...];

    return (
      <div style={{ width: "500px", height: "400px" }}>
        <Chrono items={items} />
      </div>
    )
  }

horizontal-all

🚥Vertical Mode

To render the timeline vertically use the VERTICAL mode

<div style={{ width: '500px', height: '950px' }}>
  <Chrono items={items} mode="VERTICAL" />
</div>

vertical-basic

🚥Vertical Alternating

In VERTICAL_ALTERNATING mode the timeline is rendered vertically with cards alternating between left and right side.

<div style={{ width: '500px', height: '950px' }}>
  <Chrono items={items} mode="VERTICAL_ALTERNATING" />
</div>

vertical_alternating

Props

Below are the available configuration options for the component:

NameDefaultDescription
activeItemIndex0Selects the active timeline item when loading.
allowDynamicUpdatefalseEnables or disables dynamic updates of timeline items.
borderLessCardsfalseRemoves borders and shadows from the timeline cards.
buttonTextsCustomizes the alternative text for all buttons.
cardHeight200Defines the minimum height of timeline cards.
cardLessfalseDisables timeline cards in both horizontal and vertical layouts.
cardPositionHorizontalPositions the card in horizontal mode. Options: TOP or BOTTOM.
cardWidthSets the maximum width of timeline cards.
classNamesApplies custom class names to different card elements.
contentDetailsHeight150Controls the height of the details section if using cardDetailedText. Refer to TimelineItem model for more info.
disableAutoScrollOnClickfalsePrevents auto-scrolling when a timeline card is clicked.
disableClickOnCirclefalseDisables the click action on circular points.
disableInteractionfalseDisables all the interactions with the Timeline.
disableNavOnKeyfalseTurns off keyboard navigation.
disableTimelinePointfalseDisables the timeline point in both HORIZONTAL and VERTICAL mode.
enableBreakPointtrueAutomatically switches to vertical mode when the vertical breakpoint is reached.
enableDarkTogglefalseAdds a toggle switch for dark mode.
enableLayoutSwitchtrueSwitches the timeline layout
enableQuickJumptrueAllows to quickly jump to a timeline item
flipLayoutfalseReverses the layout (Right to Left).
focusActiveItemOnLoadfalseAutomatically scrolls to and focuses on the activeItemIndex when loading.
fontSizesAllows customization of font sizes.
highlightCardsOnHoverfalseHighlights the card on hover
items[]A collection of Timeline Item Models.
itemWidth300Sets the width of the timeline section in horizontal mode.
lineWidth3pxAdjusts the width of the timeline track line.
mediaHeight200Sets the minimum height for media elements like images or videos in the card.
mediaSettingsConfigures settings specific to media layout. Refer to mediaSettings for more info.
modeVERTICAL_ALTERNATINGSets the component mode. Options: HORIZONTAL, VERTICAL, VERTICAL_ALTERNATING.
nestedCardHeight150Defines the height of nested timeline cards.
noUniqueIdfalsePrevents generating a unique id for the table wrapper.
onItemSelectedInvokes a callback on item selection, passing relevant data.
onScrollEndDetects the end of the timeline via onScrollEnd.
onThemeChangeInvokes a callback when the theme changes, triggered via enableDarkToggle.
parseDetailsAsHTMLfalseParses the cardDetailedText as HTML.
responsiveBreakPoint1024Break point at which the timeline changes to VERTICAL mode when VERTICAL_ALTERNATING is the default mode
scrollabletrueMakes the timeline scrollable in VERTICAL and VERTICAL_ALTERNATING modes.
showAllCardsHorizontalfalseDisplays all cards in horizontal mode. By default, only the active card is shown.
slideItemDuration5000Sets the duration (in milliseconds) that a timeline card is active during a slideshow.
slideShowfalseEnables slideshow control.
textDensityHIGHConfigures the amount of text to be displayed in each timeline card. Can be either HIGH or LOW
textOverlayfalseDisplays text as an overlay on media elements. Refer to Text Overlay for more info.
themeCustomizes colors. Refer to Theme for more info.
timelinePointDimensionDefines the dimensions of circular points on the timeline.
timelinePointShapecircleConfigures the shape of timeline points. Options: circle, square, diamond.
titleDateFormat'MMM DD, YYYY'Formats the date for each timeline item. Supports all dayjs formats.
toolbarPositionTOPConfigures the position of the toolbar. Can be TOP or BOTTOM
uniqueIdUsed with noUniqueId to set a custom unique id for the wrapper.
useReadMoretrueEnables or disables the "read more" button. Available if text content on the card is taller than the card itself.
disableToolbarfalseHides the toolbar / control panel

Mode

react-chrono supports three modes HORIZONTAL, VERTICAL and VERTICAL_ALTERNATING. No additional setting is required.

<Chrono items={items} mode="HORIZONTAL" />
<Chrono items={items} mode="VERTICAL" />
<Chrono items={items} mode="VERTICAL_ALTERNATING" />

Timeline item Model

namedescriptiontype
cardDetailedTextdetailed text displayed in the timeline cardString or String[]
cardSubtitletext displayed in the timeline cardString
cardTitletitle that is displayed on the timeline cardString
datedate to be used in the title. when used, this will override the title propertyDate
mediamedia object to set image or videoObject
timelineContentrender custom content instead of text.This prop has higher precedence over cardDetailedTextReactNode
titletitle of the timeline itemString
urlurl to be used in the titleString
{
  title: "May 1940",
  cardTitle: "Dunkirk",
  cardSubtitle:
    "Men of the British Expeditionary Force (BEF) wade out to a destroyer during the evacuation from Dunkirk.",
  cardDetailedText: ["paragraph1", "paragraph2"],
  timelineContent: <div>Custom content</div>,
}

if you have a large text to display(via cardDetailedText) and want to split the text into paragraphs, you can pass an array of strings.

each array entry will be created as a paragraph inside the timeline card.

⌨Keyboard Navigation

The timeline can be navigated via keyboard.

  • For HORIZONTAL mode use your LEFT RIGHT arrow keys for navigation.
  • For VERTICAL or VERTICAL_ALTERNATING mode, the timeline can be navigated via the UP DOWN arrow keys.
  • To easily jump to the first item or the last item in the timeline, use HOME or END keys.

To disable keyboard navigation set disableNavOnKey to true.

<Chrono items={items} disableNavOnKey />

Scrollable

With the scrollable prop, you can enable scrolling on both VERTICAL and VERTICAL_ALTERNATING modes.

<Chrono items={items} scrollable />

The scrollbar is not shown by default. To enable the scrollbar, pass an object with prop scrollbar to scrollable prop.

<Chrono items={items} scrollable={{ scrollbar: true }} />

📺Media

Both images and videos can be embedded in the timeline.

Just add the media attribute to the Timeline Item model and the component will take care of the rest.

To embed a image
{
  title: "May 1940",
  cardTitle: "Dunkirk",
  media: {
    name: "dunkirk beach",
    source: {
      url: "http://someurl/image.jpg"
    },
    type: "IMAGE"
  }
}
To embed a video

Videos start playing automatically when active and will be automatically paused when not active.

Like images, videos are also automatically hidden when not in the visible viewport of the container.

{
  title: "7 December 1941",
  cardTitle: "Pearl Harbor",
  media: {
    source: {
      url: "/pearl-harbor.mp4",
      type: "mp4"
    },
    type: "VIDEO",
    name: "Pearl Harbor"
  }
}

To embed YouTube videos, use the right embed url.

{
  title: "7 December 1941",
  cardTitle: "Pearl Harbor",
  media: {
    source: {
      url: "https://www.youtube.com/embed/f6cz9gtMTeI",
      type: "mp4"
    },
    type: "VIDEO",
    name: "Pearl Harbor"
  }
}

media

Text overlay mode

The textOverlay prop allows you to overlay text on top of a media element in a card.To enable the text overlay feature, simply add the text property to the items array in your Chrono timeline data. Here's an example:

import { Chrono } from 'react-chrono';

const items = [
  {
    title: 'First item',
    media: {
      type: 'IMAGE',
      source: {
        url: 'https://example.com/image.jpg',
      },
    },
    text: 'This is the caption for the first item.',
  },
];

function MyTimeline() {
  return <Chrono items={items} textOverlay />;
}

The user can click on the expand button to expand the text and see more details. Here's what it looks like:

timeline_card_text_overlay

With the textOverlay prop, you can give your timeline a modern and sleek look, and provide additional context or information about each item.

🛠Rendering custom content

The Timeline cards of the component can also support embedded custom content. To insert custom content, pass the blocked elements between the Chrono tags. For instance, the below code snippet will generate two timeline items, where each div element will be automatically converted into a timeline item and inserted into the timeline card. The items collection mentioned in the code is completely optional, and custom rendering is supported on all three modes.

<Chrono mode="VERTICAL">
  <div>
    <p>Lorem Ipsum. Lorem Ipsum. Lorem Ipsum</p>
  </div>
  <div>
    <img src="<url to  a nice image" />
  </div>
</Chrono>

Note that the items collection will also work well with any custom content that is passed. In the following code snippet, the title and cardTitle are set for the custom contents.

const items = [
  { title: 'Timeline title 1', cardTitle: 'Card Title 1' },
  { title: 'Timeline title 2', cardTitle: 'Card Title 2' },
];

<Chrono mode="VERTICAL" items={items}>
  <div>
    <p>Lorem Ipsum. Lorem Ipsum. Lorem Ipsum</p>
  </div>
  <div>
    <img src="<url to  a nice image" />
  </div>
</Chrono>;

🎭Custom icons for the Timeline

To utilize personalized icons on the timeline, enclose a collection of images between the chrono tags, wrapped in a container.

The icons are arranged sequentially; meaning, the first image that you pass in will be used as the icon for the first timeline item, and so on.

It is important to note that the image collection must be passed in inside a container with the designated chrono-icons className. This is a required convention, as the component relies on this className to select the appropriate images.

<Chrono items={items} mode="VERTICAL_ALTERNATING">
  <div className="chrono-icons">
    <img src="image1.svg" alt="image1" />
    <img src="image2.svg" alt="image2" />
  </div>
</Chrono>

custom icons also works if you are rendering custom content inside the cards.

<Chrono mode="VERTICAL" items={items}>
  <div>
    <p>Lorem Ipsum. Lorem Ipsum. Lorem Ipsum</p>
  </div>
  <div>
    <img src="<url to  a nice image" />
  </div>
  <div className="chrono-icons">
    <img src="image1.svg" alt="image1" />
    <img src="image2.svg" alt="image2" />
  </div>
</Chrono>

🌿Nested Timelines

Nested timelines in React-Chrono allow you to display timelines within timeline cards. This feature is data-driven, which means that if a timeline item has an items array, the component will automatically attempt to render the nested timeline inside the timeline card.

To use nested timelines, simply provide an array of items within the items property of a timeline item. The component will then take care of rendering the nested timeline for you.

You can also adjust the height of the nested timeline card using the nestedCardHeight prop. This allows you to control the size of the card to fit your specific use case.

const items = [
  {
    title: 'Timeline title 1',
    cardTitle: 'Card Title 1',
    items: [
      { cardTitle: 'nested card title 1' },
      { cardTitle: 'nested card title 2' },
    ],
  },
  { title: 'Timeline title 2', cardTitle: 'Card Title 2' },
];

<Chrono mode="VERTICAL" items={items}></Chrono>;

Slideshow

Enabling the slideshow feature can be done by setting the slideShow prop to true. Additionally, an optional slideItemDuration prop can be set to determine the time delay between cards.

Enabling this prop will cause the play button to appear in the timeline control panel. Use the slideShowType prop to set the type of slideshow animation.

ModeDefault Slideshow Type
VERTICALreveal
VERTICAL_ALTERNATINGslide_from_sides
HORIZONTALslide_in
<Chrono
  items={items}
  slideShow
  slideItemDuration={4500}
  slideShowType="reveal"
/>

The slideshow can be cancelled by clicking on the stop button in the control panel or by pressing the ESC key.

Item Width

The itemWidth prop can be used to set the width of each individual timeline sections. This setting is applicable only for the HORIZONTAL mode.

🎥Media Settings

Use media settings to align the media or change how a image is displayed in the card.

NameDescriptionTypeDefault
alignaligns the media. can be left, right or centerstringcenter
fitfits the image. can be cover or containstringcover
<Chrono items={items} mediaSettings={{ align: 'right', fit: 'contain' }} />

Breakpoint

Use the breakpoint feature to automatically switch the timeline to VERTICAL mode when there is not enough space for VERTICAL_ALTERNATING mode, such as on mobile devices. Set the auto switch to happen by enabling the enableBreakPoint prop and specifying the pixel limit with the verticalBreakPoint prop.

<Chrono items={items} enableBreakPoint verticalBreakPoint={400} />

🎨Theme

Customize colors with the theme prop.

Checkout the documentation for the complete list of available theme properties.

<Chrono
  items={items}
  theme={{
    primary: 'red',
    secondary: 'blue',
    cardBgColor: 'yellow',
    titleColor: 'black',
    titleColorActive: 'red',
  }}
/>

Customize Font sizes

Use the fontSizes prop to customize the font sizes of the timeline card.

<Chrono
  items={data}
  mode="HORIZONTAL"
  fontSizes={{
    cardSubtitle: '0.85rem',
    cardText: '0.8rem',
    cardTitle: '1rem',
    title: '1rem',
  }}
></Chrono>

Customize alt text for buttons

With the buttonTexts prop, you can change the button's alt text.

<Chrono
  items={data}
  mode="HORIZONTAL"
  buttonTexts={{
    first: 'Jump to First',
    last: 'Jump to Last',
    next: 'Next',
    previous: 'Previous',
  }}
></Chrono>

Defaults

PropertyValue
first'Go to First'
last'Go to Last'
next'Next'
play'Play Slideshow'
previous'Previous'

Using custom class names

You can use the classNames prop to employ your own class names. The subsequent example illustrates how you can use custom class names on different elements.

<Chrono
  className="my-timeline"
  items={items}
  classNames={{
    card: 'my-card',
    cardMedia: 'my-card-media',
    cardSubTitle: 'my-card-subtitle',
    cardText: 'my-card-text',
    cardTitle: 'my-card-title',
    controls: 'my-controls',
    title: 'my-title',
  }}
/>

📦CodeSandbox Examples

Kitchen Sink

📚Storybook

Deep dive into wide variety of examples hosted as a Storybook.

🔨Build Setup

# install dependencies
pnpm install

# start dev
pnpm dev

# run css linting
pnpm lint:css

# eslint
pnpm eslint

# prettier
pnpm lint

# package lib
pnpm rollup

🧪Tests

  # run unit tests
  pnpm test

  # run cypress tests
  pnpm cypress:test

  # run cypress tests in headless mode
  pnpm cypress:headless

  # run cypress tests in quiet mode
  pnpm cypress:quiet

🤝Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b new-feature)
  3. Commit your changes (git commit -am 'Add feature')
  4. Push to the branch (git push origin new-feature)
  5. Create a new Pull Request

🧱Built with

Meta

Huge thanks to BrowserStack for the Open Source License!

Distributed under the MIT license. See LICENSE for more information.

Prabhu Murthy – @prabhumurthy2 – prabhu.m.murthy@gmail.com https://github.com/prabhuignoto

Buy Me A Coffee

sonar

Contributors ✨

Thanks goes to these wonderful people (emoji key):

Alois
Alois

📖
Koji
Koji

📖
Alexandre Girard
Alexandre Girard

💻
Ryuya
Ryuya

📖
Taqi Abbas
Taqi Abbas

💻
megasoft78
megasoft78

💻
Eric(书生)
Eric(书生)

💻
Christophe Bernard
Christophe Bernard

💻

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

NPM DownloadsLast 30 Days