Provides simplified access to Node.js hash functions, including SHA256 and MD5, with support for strings, streams, and files.
Go to file
2019-01-30 02:42:19 +01:00
test BREAKING CHANGE(scope): change and name to @pushrocks/smarthash 2018-09-08 01:04:47 +02:00
ts BREAKING CHANGE(scope): change and name to @pushrocks/smarthash 2018-09-08 01:04:47 +02:00
.gitignore add structure 2016-08-15 04:43:26 +02:00
.gitlab-ci.yml fix(core): update 2019-01-30 02:37:55 +01:00
LICENSE add structure 2016-08-15 04:43:26 +02:00
npmextra.json fix(core): update 2019-01-30 02:42:19 +01:00
package-lock.json 2.0.1 2019-01-30 02:37:55 +01:00
package.json fix(core): update 2019-01-30 02:42:19 +01:00
README.md fix(core): update 2019-01-30 02:42:19 +01:00
tslint.json fix(core): update 2019-01-30 02:37:55 +01:00

@pushrocks/smarthash

simplified access to node hash functions

Status for master

build status coverage report npm downloads per month Known Vulnerabilities TypeScript node JavaScript Style Guide

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

repo-footer