
Security News
Node.js Drops Bug Bounty Rewards After Funding Dries Up
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.
create-hash
Advanced tools
Node style hashes for use in the browser, with native hash functions in node.
API is the same as hashes in node:
var createHash = require('create-hash')
var hash = createHash('sha224')
hash.update('synchronous write') // optional encoding parameter
hash.digest() // synchronously get result with optional encoding parameter
hash.write('write to it as a stream')
hash.end() // remember it's a stream
hash.read() // only if you ended it as a stream though
To get the JavaScript version even in node do require('create-hash/browser')
Crypto-js is a package that provides cryptographic functionalities including various hash functions, cipher algorithms, and secure random number generators. Compared to create-hash, crypto-js offers a broader range of cryptographic functions beyond just hashing.
Hash.js is a lightweight hash library that supports several hash algorithms like SHA-1, SHA-256, and SHA-512. While similar in functionality to create-hash, hash.js focuses on being a minimalistic and standalone hash library.
FAQs
create hashes for browserify
The npm package create-hash receives a total of 8,997,374 weekly downloads. As such, create-hash popularity was classified as popular.
We found that create-hash demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.