hashdirectory

0.1.0 • Public • Published

hashdirectory

Create an sha1 hash sum from a directory of files using the git algorithm.

Build Status

Creating a hash for an entire directory, instead of for a single file, can be useful for cache busting. Using git's method of creating the hash just builds upon something consistent that is known to work.

This package does not requires git to be installed on the production server, however. It only reproduces the git algorithm for hashing files and folders (but not commits or tags).

Installation

npm install --save hashdirectory

Usage

var hashdirectory = require('hashdirectory');

// Synchronous, for before your webserver starts up.
var hashed = hashdirectory.sync('./public');

// Asynchronous, for everything else.
hashdirectory('./public', function(err, hashed) {
});

// Or, if promises are more your thing.
var hashedPromise = hashdirectory('./public');

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.1.0
    940
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.1.0
    940

Package Sidebar

Install

npm i hashdirectory

Weekly Downloads

845

Version

0.1.0

License

MIT

Last publish

Collaborators

  • bryanburgers