Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gko/concat
🐱 concatenate files
https://github.com/gko/concat
concat concatenate concatenate-files
Last synced: 3 days ago
JSON representation
🐱 concatenate files
- Host: GitHub
- URL: https://github.com/gko/concat
- Owner: gko
- License: mit
- Created: 2017-01-19T19:45:27.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-28T14:02:47.000Z (over 6 years ago)
- Last Synced: 2024-10-28T17:22:17.118Z (10 days ago)
- Topics: concat, concatenate, concatenate-files
- Language: JavaScript
- Homepage:
- Size: 10.7 KB
- Stars: 44
- Watchers: 3
- Forks: 7
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
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 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