incrementify

0.3.1 • Public • Published

incrementify

Generate increment file with two versions of a file base on old version.

Usage

With Command Line

incrementify [options] oldfile newfile

Supported options:

  • -c chunkSize: set chunkSize (default: 12)
  • -o filename: use [output-file] as output instead of STDOUT

API

var incrementify = require("incrementify").build;
var ret = incrementify(file_with_old_version, file_with_new_version);
console.log(JSON.stringify(ret));

Also support config

var ret = incrementify(arg1, arg2, {
  oldfile_type: 'content',   // default: 'path' 
  newfile_type: 'path',      // default: 'path' 
  chunkSize: 12,             //default size
  output: 'filename'         // make sure you have write permission to this file
});

Resources

License

The MIT License (MIT)

Copyright (c) 2014 Tencent MT Team

/incrementify/

    Package Sidebar

    Install

    npm i incrementify

    Weekly Downloads

    1

    Version

    0.3.1

    License

    MIT

    Last publish

    Collaborators

    • yleo77