Socket
Socket
Sign inDemoInstall

grunt-hasher

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    grunt-hasher

Create hashes for files


Version published
Weekly downloads
12
increased by1100%
Maintainers
1
Install size
7.34 kB
Created
Weekly downloads
 

Readme

Source

grunt-hasher - Plugin for Grunt

Getting Started

This plugin requires Grunt ~0.4.2

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-hasher

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-hasher');

The "hasher" task

Overview

In your project's Gruntfile, add a section named hasher to the data object passed into grunt.initConfig().

grunt.initConfig({
	hasher: {
		options: {
			// Task-specific options go here.
		},
		your_target: {
			// Target-specific file lists and/or options go here.
		}
	}
});

Options

algorithm

Type: String Default value: "md5"

A string value that is the type of hashing algorithm to use. Must be either "sha1" or "md5".

outputMode

Type: String Default value: "text"

A string value that is the type of output data. Must be either "text" or "json".

outputDigest

Type: String Default value: "hex"

A string value that is the type of output hash digits. Must be either "none" or "hex".

encoding

Type: String Default value: grunt.file.defaultEncoding

The file encoding to read files with.

mode

Type: Boolean or Number Default: false

Whether to copy or set the existing file permissions. Set to true to copy the existing file permissions. Or set to the mode, i.e.: 0644, that copied files will be set to.

outputTextFormat

Type: String Default value: "{HASH} *{SRC}"

...

outputFilenameFormat

Type: String Default value: "{BASENAME}.{HASH}{EXT}"

...

hashLength

Type: Number Default value: null

The number of characters from the beginning of the hash value to use. When set to undefined or null, all characters are used.

hashFunction

Type: Function Default value: internal function

...

Keywords

FAQs

Last updated on 12 Apr 2014

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc