# concatem

> Concat'em

Latest version **0.0.1** (published 2015-11-23) · MIT license · 0 weekly downloads

## Install

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

Provides the command `concatem`.

## 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.0.1 |
| Published | 2015-11-23 |
| First published | 2015-11-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Feifei Hang |
| Maintainers | hufyhang |

## Links

- npm: https://www.npmjs.com/package/concatem
- Repository: https://github.com/hufyhang/concatem
- Issues: https://github.com/hufyhang/concatem/issues
- npm.io page: https://npm.io/package/concatem

## Dependencies (3)

- [glob](https://npm.io/package/glob.md) ^4.0.6
- [colors](https://npm.io/package/colors.md) ^1.0.3
- [mkdirp](https://npm.io/package/mkdirp.md) ^0.5.0

## Recent versions

- 0.0.1 (latest) — 2015-11-23

## README

concatem (Concat 'em)
====================

A Node.js app for concatenating files according to predefined settings.

Suitable for authoring simple static website or generating files.

Usage
------

Go to a folder with `concatemfile.js` files inside, and then:

`concatem [task]`

If no `task` parameter presented, process all tasks defined in `concatemfile.js`.

Config.js
---------

Sample:

~~~javascript
{
  "define": {

    "header": "config.js",
    "copyright": {"text": "All rights reserved by me."}

  },

  "concat": {

    "html": {
      "src": ["*.html"],
      "dest": "./dist"
    },

    "dist": {
      "src": ["*.txt"],
      "dest": "./dist/",
      "extension": ".md"
    }

  }
}
~~~

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