nectar

5.0.6 • Public • Published

nectar

Create .tar archive of files matching glob(s)

Makes a great team with extrakt.

Build Status Code Quality Code Coverage 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

Dependents (1)

Package Sidebar

Install

npm i nectar

Weekly Downloads

5

Version

5.0.6

License

MIT

Unpacked Size

39.2 kB

Total Files

36

Last publish

Collaborators

  • jmversteeg