
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
secure-random-string
Advanced tools
Node.js module that generates a cryptographically secure random string with a given length
var srs = require('secure-random-string');
This may include alphanumeric characters as well as the following characters: +, /, =.
// Sync
var result = srs();
// Async
srs(function(err, sr) {
console.log(sr);
});
Optionally, you can specify a 'length' option to specify a length.
// sync
var result = srs({length: 256});
// async
srs({length: 256}, function(err, sr) {
console.log(sr);
});
Optionally, you can specify a 'alphanumeric' option to get a alphanumerical chars only.
// sync
var result = srs({alphanumeric: true});
// async
srs({alphanumeric: true}, function(err, sr) {
console.log(sr);
});
An error is possible if there is not enough accumulated entropy to generate cryptographically strong data. In other words, this will not block even if all entropy sources are drained. Note that the sync API throws an exception, while the async API returns the error to the callback.
[1.1.4] 2024-09-26
securerandomstring
would throw an exception. Now it will retry to generate a random string until it succeeds, or the call stack becomes full.FAQs
Generates a secure random string with a given length
The npm package secure-random-string receives a total of 3,217 weekly downloads. As such, secure-random-string popularity was classified as popular.
We found that secure-random-string demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.