# fwd

> Forward one (emitter|stream)'s events to another

Latest version **0.2.2** (published 2012-10-15) · MIT license · 0 weekly downloads

## Install

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

## 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.2 |
| Published | 2012-10-15 |
| First published | 2012-09-27 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Julian Gruber |
| Maintainers | juliangruber |
| Keywords | forward, emitter, event, eventemitter, stream, glue |

## Links

- npm: https://www.npmjs.com/package/fwd
- Repository: https://github.com/juliangruber/fwd
- npm.io page: https://npm.io/package/fwd

## Alternatives

- [async-exit-hook](https://npm.io/package/async-exit-hook.md) — 3.7M weekly downloads
- [evnty](https://npm.io/package/evnty.md) — 7.2K weekly downloads
- [eleventy-plugin-asciidoc](https://npm.io/package/eleventy-plugin-asciidoc.md) — 3.5K weekly downloads
- [@jswork/next-get2get](https://npm.io/package/@jswork/next-get2get.md) — 945 weekly downloads
- [@dashersw/axon](https://npm.io/package/@dashersw/axon.md) — 934 weekly downloads

## Recent versions

- 0.2.2 (latest) — 2012-10-15
- 0.2.1 — 2012-09-28
- 0.2.0 — 2012-09-28
- 0.1.0 — 2012-09-28
- 0.0.2 — 2012-09-27
- 0.0.1 — 2012-09-27

## README

# fwd

Forward one `(emitter|stream)`'s events to another -> connect parts of your application whose interface you have no control over.

This is compatible both with the node-core EventEmitter and with [component/emitter](https://github.com/component/emitter).

## Installation

```bash
$ component install juliangruber/fwd
$ npm install fwd
```
## Usage

### EventEmitter → EventEmitter

```javascript
var fwd = require('fwd');
var Stream = require('stream');
var EventEmitter = require('events').EventEmitter;
// or: var EventEmitter = require('emitter')

var src = new EventEmitter();
var dest = new EventEmitter();

fwd(src, dest);

dest.on('event', function() {
  // success
});

src.emit('event');
```

### Stream → EventEmitter

```javascript
var src = new Stream();
src.readable = true;
var dest = new EventEmitter();

fwd(src, dest, {'data': 'entry'});
```

### EventEmitter → Stream

```javascript
var src = new EventEmitter();
var dest = new Stream();
dest.writable = true;

fwd(src, dest, 'entry');
fwd(src, dest, {'wrong': JSON.stringify});
```

### Stream → Stream

```javascript
var src = new Stream();
src.readable = true;
var dest = new Stream();
dest.writable = true;

fwd(src, dest, function(data) {
  return data*2;
});
```

### Rules

You can rewrite data on-the-fly:

```javascript
var src = new EventEmitter();
var dest = new EventEmitter();

fwd(src, dest, '*');                                // the same as with no 3rd argument
fwd(src, dest, ['event1', 'event2'])                // only forward event1 and event2
fwd(src, dest, [{'event1': 'entry'}, '*'])          // forward event1 as entry and everything else
fwd(src, dest, [{'event1': function(data) {         // forward event1 with it's data doubled 
  return data*2;
}}]);
fwd(src, dest, [{'event1': function(event, data) {  // also rewrite the event name
  return {
    event: 'event-foo',
    data : data*2
  }
}}]);
fwd(src, dest, function(event, data) {              // forward and rewrite everything
  return {                                          // the same as: {'*': function(){ ... }}
    event: 'my-'+event,
    data : JSON.stringify(data)
  }
});
```

## API

### fwd(src, dest)

Forward all events from `src` to `dest`.

### fwd(src, dest, event=string)

Forward only `event`.

### fwd(src, dest, events=[string,..])

Forward only `events`.

### fwd(src, dest, mapping={from: to})

Rewrite names and fwd only that. `mapping` can be in an array to do multiple rewrites at one.

### fwd(src, dest, fn=function)

Apply `fn` to

* `(data)` and return modified `data`
* `(event, data)` and return `{event:'event', data:'data'}`

`fn` can also appear inside mappings.

### stop()

`stop` is returned by every `fwd`-call, so you can stop forwarding. Use this as stream-unpipe which isn't in the stream class yet.

## Tests

```bash
$ git clone https://github.com/juliangruber/fwd.git && cd fwd
$ npm install
$ mocha
```

## License

Copyright (c) 2012 Julian Gruber &lt;julian@juliangruber.com&gt;

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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