Package Exports
- @pushrocks/smarthash
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@pushrocks/smarthash) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@pushrocks/smarthash
simplifies access to node hash functions
Availabililty and Links
Status for master
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");For further information read the linked docs at the top of this readme.
MIT licensed | © Lossless GmbH | By using this npm module you agree to our privacy policy