# tower-program

> ## Installation

Latest version **0.1.0** (published 2013-06-24) · 0 weekly downloads

## Install

```sh
npm install tower-program
pnpm add tower-program
yarn add tower-program
bun add tower-program
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2013-06-24 |
| First published | 2013-06-02 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | viatropos |

## Links

- npm: https://www.npmjs.com/package/tower-program
- Repository: http://github.com/tower/program
- npm.io page: https://npm.io/package/tower-program

## Dependencies (2)

- [tower-stream](https://npm.io/package/tower-stream.md) ~0.1.0
- [tower-emitter](https://npm.io/package/tower-emitter.md) ~0.1.0

## Recent versions

- 0.1.0 (latest) — 2013-06-24
- 0.1.0pre — 2013-06-02

## README

# Tower Program

## Installation

node.js:

```bash
$ npm install tower-program
```

browser:

```bash
$ component install tower/program
```

## Example

```js
var program = require('tower-program');

program('count-words')
  .input('words') // or `type`
    .attr('name')
  .output('count', 'integer');

var counter = program('count-words').init();
counter.output('count').on('data', function(count){
  console.log(count);
});
counter.input('words').send({ name: 'hello' });
```

## Notes

- https://mathieu.fenniak.net/the-api-checklist/
- https://github.com/veltman/learninglunches/tree/master/apis

## Licence

MIT

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