Home

Awesome

gulp-nar Build Status Dependency Status NPM version

Create and extract nar archives from Gulp

Installation

Install the task

$ npm install gulp-nar --save-dev

Usage

var gulp = require('gulp')
var nar = require('gulp-nar')

gulp.task('create', function () {
  gulp.src('package.json')
    .pipe(nar.create('releases/'))
})

gulp.task('create-executable', function () {
  gulp.src('package.json')
    .pipe(nar.createExecutable('releases/'))
})

gulp.task('extract', function () {
  gulp.src('app.nar')
    .pipe(nar.extract('app/'))
})

See gulpfile.js for more examples

API

nar.create(path, options)

Creates an archive according to the package.json configuration

nar.createExecutable(path, options)

Creates an executable binary-like archive

nar.extract(path, options)

Extract archive content into a directory

License

MIT © Tomas Aparicio