This package has been deprecated

Author message:

nodehash

nodehash
TypeScript icon, indicating that this package has built-in type declarations

1.0.4 • Public • Published

nodehash

simplifies access to node hash functions. TypeScript Ready

Status

build status

Usage

We recommend the use of TypeScript for best in class intellisense.

import * as nodehash from "nodehash";
 
// from stream
let readStream = fs.createReadStream("./somefile.txt")
nodehash.sha256FromStream(readStream)
    .then((resultString){
        console.log(resultString)// prints hash of the file
    });
 
// from file
nodehash.sha256FromFile("./somefile.txt")
    .then((resultString){
        console.log(resultString)// prints hash of the file
    });
 
// from string
nodehash.sha256FromString("some weird random string")
    .then((resultString){
        console.log(resultString)// prints hash of the file
    });
 
let hashString = nodehash.sha256FromStringSync("some weird random string");

Package Sidebar

Install

npm i nodehash

Weekly Downloads

2

Version

1.0.4

License

MIT

Last publish

Collaborators

  • lossless