1.2.4 • Published 10 years ago

vcat v1.2.4

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

vcat

Build Status Codacy Badge npm

A simple concatenation command line tool built with Node.js streams.
Basically, it is a JavaScript version of Unix's cat utility program.

Install

npm package

You might want to install vcat as a development dependency:

$ npm install vcat --save-dev

Or just install it globally:

$ npm install -g vcat

Usage

To use vcat, you need to pass input files with the -s or --source option, then pass an output path with the -o or --output option.

Examples

The basic use case, reading files and concatenating to a new file:

$ vcat -s src/*.js -o bundle.js

If an option is not passed, vcat will use the standard input/output, meaning basic piping is possible:

$ vcat -s src/*.js | grep 'Hello World'
$ (date; echo "Hello World") | vcat -o output.txt
$ vcat -s src/*.js | transpilerProgram

License

This software is licensed under MIT.

1.2.4

10 years ago

1.2.3

10 years ago

1.2.2

10 years ago

1.2.1

10 years ago

1.2.0

10 years ago

1.1.1

10 years ago

1.1.0

10 years ago

1.0.0

10 years ago