An open API service indexing awesome lists of open source software.

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

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);
})();
```