# tailwind-animation-extension

> ## Prerequisite

Latest version **1.3.0** (published 2024-03-07) · ISC license · 0 weekly downloads

## Install

```sh
npm install tailwind-animation-extension
pnpm add tailwind-animation-extension
yarn add tailwind-animation-extension
bun add tailwind-animation-extension
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.3.0 |
| Published | 2024-03-07 |
| First published | 2024-02-22 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 14 |
| Unpacked size | 28 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 4 |
| Maintainers | lyhv, daningyn, thutran142857, kietpva, batuoc263, ch-und, henryhoang21, ntb2021 |

## Links

- npm: https://www.npmjs.com/package/tailwind-animation-extension
- Repository: https://github.com/daningyn/tailwind-animation-extension
- Homepage: https://github.com/daningyn/tailwind-animation-extension#readme
- Issues: https://github.com/daningyn/tailwind-animation-extension/issues
- npm.io page: https://npm.io/package/tailwind-animation-extension

## Dependencies (14)

- [i](https://npm.io/package/i.md) ^0.3.7
- [npm](https://npm.io/package/npm.md) ^10.4.0
- [react](https://npm.io/package/react.md) ^18.2.0
- [react-dom](https://npm.io/package/react-dom.md) ^18.2.0
- [web-vitals](https://npm.io/package/web-vitals.md) ^2.1.4
- [react-redux](https://npm.io/package/react-redux.md) ^9.1.0
- [tailwindcss](https://npm.io/package/tailwindcss.md) ^3.4.1
- [react-scripts](https://npm.io/package/react-scripts.md) 5.0.1
- [@reduxjs/toolkit](https://npm.io/package/@reduxjs/toolkit.md) ^2.2.1
- [react-router-dom](https://npm.io/package/react-router-dom.md) ^6.22.1
- [telegram-assistant](https://npm.io/package/telegram-assistant.md) ^1.0.1
- [@testing-library/react](https://npm.io/package/@testing-library/react.md) ^13.4.0
- [@testing-library/jest-dom](https://npm.io/package/@testing-library/jest-dom.md) ^5.17.0
- [@testing-library/user-event](https://npm.io/package/@testing-library/user-event.md) ^13.5.0

## Recent versions

- 1.3.0 (latest) — 2024-03-07
- 1.2.0 — 2024-03-01
- 1.1.0 — 2024-02-28
- 1.0.1 — 2024-02-24
- 1.0.0 — 2024-02-22
- 0.1.0 — 2024-02-22

## README

# Tailwind Animation Extension

## Prerequisite

- Docker (v25.0.1)
- Docker Compose (v1.29.2)

## Installation

### Docker

#### Update new packages

```bash
sudo apt update
sudo apt install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
```

#### Add Docker to package

```bash
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable"
apt-cache policy docker-ce
```

### Install docker

```bash
sudo apt install docker-ce
```

#### Check docker status

```bash
sudo systemctl status docker
```

It should be like below

```
Output
● docker.service - Docker Application Container Engine
     Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled)
     Active: active (running) since Tue 2023-05-19 17:00:41 UTC; 17s ago
TriggeredBy: ● docker.socket
       Docs: https://docs.docker.com
   Main PID: 24321 (dockerd)
      Tasks: 8
     Memory: 46.4M
     CGroup: /system.slice/docker.service
             └─24321 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock
```

Add root user to group Docker which avoid always calling `sudo` whenever typing docker script

```bash
sudo usermod -aG docker ${USER}
su - ${USER}
```

Check group, if see `sudo` in there, successful

```bash
group
```

### Docker Compose

#### Install

```bash
sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
docker-compose --version
```

## Contributing

Pull requests are welcome. For major changes, please open an issue first
to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License

[MIT](https://choosealicense.com/licenses/mit/)

---
_Source: https://npm.io/package/tailwind-animation-extension · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
