https://github.com/skitsanos/node-file-hash
Calculating file hash in node.js
https://github.com/skitsanos/node-file-hash
file-hash file-hashing filehash hashing
Last synced: 7 months ago
JSON representation
Calculating file hash in node.js
- Host: GitHub
- URL: https://github.com/skitsanos/node-file-hash
- Owner: skitsanos
- License: mit
- Created: 2021-07-04T09:20:47.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-10-27T17:50:03.000Z (almost 2 years ago)
- Last Synced: 2025-01-15T20:19:53.536Z (9 months ago)
- Topics: file-hash, file-hashing, filehash, hashing
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# node-file-hash
Calculating file hash in node.js### How to use
```js
(async () =>
{
const hash = await fileHash('wildfly-22.0.0.Final.zip');
console.log(hash);
})();
```