Skip to content

Latest commit

 

History

History
85 lines (51 loc) · 2.13 KB

readme.md

File metadata and controls

85 lines (51 loc) · 2.13 KB

nectar

Create .tar archive of files matching glob(s)

Makes a great team with extrakt.

Build Status NPM Version

Install

$ npm install --save nectar

Usage

const nectar = require('nectar');

await nectar(['resources/**/*.js'], 'bundle.tar');
// packs all .js files inside 'resources' into 'bundle.tar'

Create .tar.gz (using streaming mode)

const fs     = require('fs');
const zlib   = require('zlib');

const gZip   = zlib.createGzip();

nectar(['resources/**/*.js'])
    .pipe(gZip)
    .pipe(fs.createWriteStream('bundle.tar.gz'));

API

nectar(input, [output], [options])

Creates a .tar archive containing all files matched by the given input glob(s). The directory structure, relative to the working directory, is preserved.

If the output argument is provided, the archive is written to output and a promise is returned for an array of the paths of the matches entries. If no output argument is provided, a promise for a readable stream for the archive will be returned.

input

Type: string|string[]

Input glob(s).

output

Type: string|WritableStream

Optional output path or a writable stream.

options.cwd

Type: string Default: process.cwd()

Optional working directory for glob matching

License

MIT © sgtlambda

dependency Status devDependency Status