# tweense

> A tiny javascript tweening animation engine

Latest version **0.2.0** (published 2019-03-22) · MIT license · 0 weekly downloads

## Install

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

## 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.2.0 |
| Published | 2019-03-22 |
| First published | 2019-03-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 40.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | ULIVZ |
| Maintainers | ulivz |

## Links

- npm: https://www.npmjs.com/package/tweense
- Repository: https://github.com/ulivz/Tween
- Homepage: https://github.com/ulivz/Tween#readme
- Issues: https://github.com/ulivz/Tween/issues
- npm.io page: https://npm.io/package/tweense

## Recent versions

- 0.2.0 (latest) — 2019-03-22
- 0.1.0 — 2019-03-22
- 0.0.1 — 2019-03-22

## README

# TweenSE

> A tiny javascript tweening animation engine.

[![NPM version](https://badgen.net/npm/v/tweense)](https://npmjs.com/package/tweense) [![NPM downloads](https://badgen.net/npm/dm/tweense)](https://npmjs.com/package/tweense) 

## Install

```bash
npm i tweense -s
```

## Usage

```js
const { animate } = require('tweense')

animate(
  0,                     // initial valud
  1,                     // target value
  1000,                  // duration
  'Quad.easeIn',         // timing function
  (value, isEnding) => { // callback
    if(!isEnding){
      arc.render(value)
    }
  }
)
```

## Contributing

1. Fork it!
2. Create your feature branch: `git checkout -b my-new-feature`
3. Commit your changes: `git commit -am 'Add some feature'`
4. Push to the branch: `git push origin my-new-feature`
5. Submit a pull request :D


## Author

**tweense** © [ULIVZ](https://github.com/ulivz), Released under the [MIT](LICENSE) License.<br>
Authored and maintained by ULIVZ with help from contributors ([list](https://github.com/ulivz/tweense/contributors)).

> [github.com/ulivz](https://github.com/ulivz) · GitHub [@ULIVZ](https://github.com/ulivz) · Twitter [@_ulivz](https://twitter.com/_ulivz)

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