# concat

> concatenate multiple files

Latest version **1.0.3** (published 2017-04-22) · MIT license · 0 weekly downloads

## Install

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

Provides the command `concat`.

## 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 | 1.0.3 |
| Published | 2017-04-22 |
| First published | 2012-05-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=6 |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 40 |
| Author | Konstantin Gorodinskiy |
| Maintainers | konstantin |
| Keywords | concatenate, files, concat, join |

## Links

- npm: https://www.npmjs.com/package/concat
- Repository: https://github.com/gko/concat
- Homepage: https://github.com/gko/concat#readme
- Issues: https://github.com/gko/concat/issues
- npm.io page: https://npm.io/package/concat

## Dependencies (1)

- [commander](https://npm.io/package/commander.md) ^2.9.0

## Alternatives

- [unionfs](https://npm.io/package/unionfs.md) — 2.2M weekly downloads
- [path-starts-with](https://npm.io/package/path-starts-with.md) — 35.9K weekly downloads
- [redzip](https://npm.io/package/redzip.md) — 1.2K weekly downloads
- [vscode-anymatch](https://npm.io/package/vscode-anymatch.md) — 848 weekly downloads
- [@ledgerhq/coin-filecoin](https://npm.io/package/@ledgerhq/coin-filecoin.md) — 793 weekly downloads

## Recent versions

- 1.0.3 (latest) — 2017-04-22
- 1.0.2 — 2017-04-22
- 3.0.0 — 2017-02-21
- 0.0.1-security — 2016-03-23
- 2.0.0 — 2016-03-22
- 1.0.0 — 2014-06-02
- 0.2.4 — 2012-10-24
- 0.2.3 — 2012-06-12
- 0.2.2 — 2012-06-04
- 0.2.1 — 2012-05-20
- 0.2.0 — 2012-05-20
- 0.0.9 — 2012-05-18
- 0.0.8 — 2012-05-18
- 0.0.7 — 2012-05-18
- 0.0.6 — 2012-05-18
- … 6 more at https://npm.io/package/concat/versions

## README

# Concat

[![Build Status](https://travis-ci.org/gko/concat.svg?branch=master)](https://travis-ci.org/gko/concat)

Concatenate multiple files

## Usage

```bash
Usage: concat [options]

concatenate multiple files

Options:
    -h, --help                   output usage information
    -V, --version                output the version number
    -o, --output <file>          output file
```

examples:
```bash
concat -o output.css ./1.css ./2.css ./3.css
```

You can also use it from node:

```javascript
const concat = require('concat');

concat([file1, file2, file3]).then(result => console.log(result))

// or
concat([file1, file2, file3], outputFile)
```

## Tests

To run tests you simply need to do:
```bash
npm run test
```

## Like it?

:star: this repo

## License

[MIT](http://opensource.org/licenses/MIT)

Copyright (c) 2017 Konstantin Gorodinskiy

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