Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

hashonym

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hashonym

cp files using the content hash as the filename

latest
Source
npmnpm
Version
0.0.0
Version published
Maintainers
1
Created
Source

hashonym

cp files using the content hash as the filename. Calculates the minimum hash length required to avoid hash-collisions for files with different content, but this can be overriden via configuration.

example

var Hashonym = require('hashonym');

var hasher = new Hashonym(outputDirectory, {
    ext: true,      // preserve the file extension of the source file
    minHashLen: 3   // the minimum hash length to use for the file name
});

hasher.add('./some/file.js');
hasher.add(['./some/other/file.js']);

hasher.hashonymize(function (err, map) {
    if (err) {
        return console.error(err);
    }
    console.log(JSON.stringify(map));
});
{
  './some/file.js': 'a16.js',
  './some/other/file.js': '2hs.js'
}

methods

hashonym.add(filepath)

Adds a file to the set of files that should be evaluated at a later time.

Adding a new file after a call to hashonymize() will require a recalcuation due to the fact that the minimum hash length may change.

hashonym.hashonymize(callback);

Copies all added files to the specified directory using the content hash as the file name.

Returns a mapping of the source files and the hash files.

install

npm install hashonym

license

BSD

Keywords

file

FAQs

Package last updated on 25 Mar 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts