# @jaylvis/reactjs-fr-countdown

> A simple countdown timer component for React.js

Latest version **0.0.8** (published 2021-08-09) · MIT license · 0 weekly downloads

## Install

```sh
npm install @jaylvis/reactjs-fr-countdown
pnpm add @jaylvis/reactjs-fr-countdown
yarn add @jaylvis/reactjs-fr-countdown
bun add @jaylvis/reactjs-fr-countdown
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.8 |
| Published | 2021-08-09 |
| First published | 2021-08-09 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 7 |
| Unpacked size | 18.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Brendan Seiller |
| Maintainers | jaylvis |
| Keywords | countdown, timer, react countdown |

## Links

- npm: https://www.npmjs.com/package/@jaylvis/reactjs-fr-countdown
- Repository: https://github.com/SBrendan/reactjs-countdown
- Homepage: https://github.com/SBrendan/reactjs-countdown#readme
- Issues: https://github.com/SBrendan/reactjs-fr-countdown/issues
- npm.io page: https://npm.io/package/@jaylvis/reactjs-fr-countdown

## Dependencies (7)

- [react](https://npm.io/package/react.md) ^16.5.2
- [chart.js](https://npm.io/package/chart.js.md) ^2.7.2
- [react-dom](https://npm.io/package/react-dom.md) ^16.4.2
- [classnames](https://npm.io/package/classnames.md) ^2.2.6
- [prop-types](https://npm.io/package/prop-types.md) ^15.6.2
- [babel-register](https://npm.io/package/babel-register.md) ^6.26.0
- [react-proptypes](https://npm.io/package/react-proptypes.md) ^1.0.0

## Recent versions

- 0.0.8 (latest) — 2021-08-09

## README

# reactjs-countdown

A simple countdown timer component for React.js.

This package is inspired from the awesome [vuejs-countdown](https://github.com/getanwar/vuejs-countdown) package.

Forked from [reactjs-countdown](https://github.com/hashemirafsan/reactjs-countdown)

![screenshot](https://raw.githubusercontent.com/hashemirafsan/reactjs-countdown/master/scr.png "React JS Countdown")

## Installation

#### npm
`npm i reactjs-countdown --save`


## Usage

```javascript
import React, { Component } from 'react';
import CountDown from 'reactjs-countdown';

class Something extends Component {
    constructor(props) {
        // something
    }

    render() {
        return(
            <div>
                <CountDown
                    deadline="August 22, 2022"
                />
                or
                <CountDown
                    end="August 22, 2022"
                />
            </div>
        );
    }
}

export default Something;
```

## Other Config

You can stop the countdown timer anytime by passing `true` (Boolean) with `stop` props.

You can change the language of the text to French by passing `FR` (String) with `format` props.

```javascript
<Countdown
    format="FR"
    deadline="September 22, 2023"
/>
```

### Caution 

Please don't provide any confusing date format since it has no dependency to Moment.js or any other date helpers. You can check [here](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/parse#Examples) more date format.

---
_Source: https://npm.io/package/@jaylvis/reactjs-fr-countdown · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
