Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

hash-all-files

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hash-all-files

get all file hash. 获取所有文件的 hash.

latest
Source
npmnpm
Version
0.0.2
Version published
Maintainers
1
Created
Source

hash-all-files

Hash all files with Node.js

Install

3 ways:

  • clone this repo, and require ./index.js

  • npm install --save-dev hash-all-files

  • yarn add --dev hash-all-files

Usage

hashAllFile({
  projectPath: "./",
  folderPath: "./test/",
  hashLength: 8,
  filter(file) {
    return /\.png$/.test(file)
  }
})

API

hashAllFile

projectPath:

Mandatory. Path relative to project root.

folderPath:

Mandatory. Relative folder path will be hashed.

filter:

Optional. Function filter receive a file path relative to param folderPath. File will be hashed which pass the test implemented by the provided function.

hashLength:

Optional. Default value is 8.

Demo

git clone && yarn && yarn test

console:

{ 'test/a.png': 'test/a.d41d8cd9.png',
  'test/folder1/666.txt': 'test/folder1/666.fae0b27c.txt',
  'test/folder1/b.png': 'test/folder1/b.d41d8cd9.png',
  'test/folder1/c.jpg': 'test/folder1/c.d41d8cd9.jpg',
  'test/index.js': 'test/index.254a638c.js' }

 { 'test/a.png': 'test/a.d41d.png',
  'test/folder1/b.png': 'test/folder1/b.d41d.png' }

 {}

License

MIT

Keywords

file hash

FAQs

Package last updated on 27 Dec 2018

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