# reeverse

> A dead simple text reverse library.

Latest version **1.0.0** (published 2019-08-29) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

```sh
npm install reeverse
pnpm add reeverse
yarn add reeverse
bun add reeverse
```

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2019-08-29 |
| First published | 2019-08-29 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 4.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Thien Nguyen |
| Maintainers | tatthien |
| Keywords | rollup, reverse |

## Links

- npm: https://www.npmjs.com/package/reeverse
- Repository: https://github.com/tatthien/reeverse
- Homepage: https://github.com/tatthien/reeverse#readme
- Issues: https://github.com/tatthien/reeverse/issues
- npm.io page: https://npm.io/package/reeverse

## Alternatives

- [raw-loader](https://npm.io/package/raw-loader.md) — 4.3M weekly downloads
- [plop](https://npm.io/package/plop.md) — 1.4M weekly downloads
- [webpack-deadcode-plugin](https://npm.io/package/webpack-deadcode-plugin.md) — 80.3K weekly downloads
- [@storybook/preact-vite](https://npm.io/package/@storybook/preact-vite.md) — 54.2K weekly downloads
- [vite-plugin-transform](https://npm.io/package/vite-plugin-transform.md) — 2.4K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2019-08-29

## README

# reeverse

A dead simple text reverse library.

> This library is created for learning Rollup purpose. It's not recommended for your projects.

## Installation

- Install via npm or yarn:

```bash
$ npm install reeverse
# install with yarn
$ yarn add reeverse
```

- Include within your HTML

```html
<script src="https://unpkg.com/reeverse@1.0.0/dist/reeverse.min.js"></script>
```

## Usage

- In a Node.js application.

```js
const reverse = require('reeverse')

const text = 'Hello 12bit.vn'
const reversedText = reverse(text)

console.log(reversedText)
// nv.tib21 olleH
```

- In a modular environment.

```js
import reverse from 'reeverse'
```

- In browsers.

```html
<script>
var text = 'Hello 12bit.vn'
var reversedText = reverse(text)

console.log(reversedText)
// nv.tib21 olleH
</script>
```

## Contribute

All contributions, big or small, are warmheartedly welcome! Please follow these steps if you want to contribute to this project.

### Clone and install dependencies

```bash
git clone https://github.com/tatthien/reeverse.git
cd reeverse
yarn install
```

### Build the library

```bash
yarn build
```

Once you're happy with the changes, commit the file and create a PR.

## License
MIT © [Thien Nguyen](https://tatthien.com)

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