# ressive

> An Ingenious Kit 4 Simple Project Build

Latest version **2.1.2** (published 2018-10-04) · MIT license · 0 weekly downloads

## Install

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

## 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 | 2.1.2 |
| Published | 2018-10-04 |
| First published | 2018-09-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | joenix@qq.com |
| Maintainers | joenix |
| Keywords | ressive |

## Links

- npm: https://www.npmjs.com/package/ressive
- npm.io page: https://npm.io/package/ressive

## Recent versions

- 2.1.2 (latest) — 2018-10-04
- 2.1.0 — 2018-10-04
- 2.0.6 — 2018-10-02
- 2.0.5 — 2018-09-28
- 2.0.4 — 2018-09-27
- 2.0.3 — 2018-09-27
- 2.0.2 — 2018-09-27
- 2.0.1 — 2018-09-27
- 1.1.3 — 2018-09-26
- 1.1.2 — 2018-09-25
- 1.1.1 — 2018-09-25
- 1.1.0 — 2018-09-25
- 1.0.2 — 2018-09-25
- 1.0.0 — 2018-09-25

## README

# Ressive

> An Ingenious Kit 4 Simple Project Build

## Get Start


### Require Package

``` javascript
const Ressive = require('ressive')
```

### How To Use Ressive
``` javascript
new Ressive(
	{
		key: 'lock'
	}
)
.next(

	class FirstRun
	{
		constructor ( data )
		{
			console.log( data ) // { key: 'lock' }

			return { A: '1st' }
		}
	},

	function ({ A })
	{
		console.log( A ) // 1st

		return { B: 'Ham' }
	},

	( data ) => {

		console.log( data ) // { key: 'lock', A: 'Example', B: 'Ham' }

	}

)
.next(

	class SecondRun
	{
		constructor ( data )
		{
			console.log( data ) // { key: 'lock' }

			return { C: '3th' }
		}
	},

	( data ) => {

		console.log( data ) // { key: 'lock', C: '3th' }

	}

)

```

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