JSPM

  • Created
  • Published
  • Downloads 38
  • Score
    100M100P100Q53103F
  • License MIT

Create tar archive of files matching glob(s)

Package Exports

  • nectar

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (nectar) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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