# start-input-connector

> Input connector task for Start

Latest version **0.2.0** (published 2016-12-29) · MIT license · 0 weekly downloads

## Install

```sh
npm install start-input-connector
pnpm add start-input-connector
yarn add start-input-connector
bun add start-input-connector
```

## 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 | 2016-12-29 |
| First published | 2016-02-27 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=4 |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Kir Belevich |
| Maintainers | deepsweet |
| Keywords | start, start-task |

## Links

- npm: https://www.npmjs.com/package/start-input-connector
- Repository: https://github.com/start-runner/input-connector
- Issues: https://github.com/start-runner/input-connector/issues
- npm.io page: https://npm.io/package/start-input-connector

## Alternatives

- [lodash.startswith](https://npm.io/package/lodash.startswith.md) — 769.7K weekly downloads
- [@tarojs/service](https://npm.io/package/@tarojs/service.md) — 33.9K weekly downloads
- [io.extendreality.tilia.indicators.spatialtargets.unity](https://npm.io/package/io.extendreality.tilia.indicators.spatialtargets.unity.md) — 131 weekly downloads
- [@rtarojs/taro](https://npm.io/package/@rtarojs/taro.md) — 90 weekly downloads
- [node-branch-io](https://npm.io/package/node-branch-io.md) — 50 weekly downloads

## Recent versions

- 0.2.0 (latest) — 2016-12-29
- 0.1.0 — 2016-02-27

## README

# start-input-connector

[![npm](https://img.shields.io/npm/v/start-input-connector.svg?style=flat-square)](https://www.npmjs.com/package/start-input-connector)
[![linux build](https://img.shields.io/travis/start-runner/input-connector/master.svg?label=linux&style=flat-square)](https://travis-ci.org/start-runner/input-connector)
[![windows build](https://img.shields.io/appveyor/ci/start-runner/input-connector/master.svg?label=windows&style=flat-square)](https://ci.appveyor.com/project/start-runner/input-connector)
[![coverage](https://img.shields.io/codecov/c/github/start-runner/input-connector/master.svg?style=flat-square)](https://codecov.io/github/start-runner/input-connector)
[![deps](https://img.shields.io/gemnasium/start-runner/input-connector.svg?style=flat-square)](https://gemnasium.com/start-runner/input-connector)

Input connector task for [Start](https://github.com/start-runner/start), helps to pass data through different tasks runners.

## Install

```sh
npm install --save-dev start-input-connector
# or
yarn add --dev start-input-connector
```

## Usage

```js
import Start from 'start';
import reporter from 'start-pretty-reporter';
import files from 'start-files';
import inputConnector from 'start-input-connector';
import eslint from 'start-eslint';

const start = Start(reporter());

const lint = (input) => start(
  inputConnector(input),
  eslint()
);

export const lintLib = () => start(
  files([ 'lib/**/*.js' ]),
  lint
);

export const lintTest = () => start(
  files([ 'test/**/*.js' ]),
  lint
);
```

See [documentation](https://github.com/start-runner/start#readme) for details.

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