
Security News
Next.js Patches Critical Middleware Vulnerability (CVE-2025-29927)
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
infinite-sequence-generator
Advanced tools
An infinte set of keys that never ends, never repeats, is somewhat human readble and scales logarythmically.
Creates a sequence of strings that can be compared by > and < operators (and therefore sort). The sequence never ends (doesn't overflow like a number at 2^52) and the memory footprint scales logarithimcally.
Well it returns a generator that's yields a sequence of keys of all printable ASCII 7-bit character set and uses that set as digits.
Install dependency from npm
npm install infinite-sequence-generator
Then use it in the code as you like it:
const fini = require("infinite-sequence-generator");
const seq = fini();
seq.next().value; // __!
// or maybe as an iterator
let i = 0;
for (var key of seq) {
console.log(key);
if (i++ > 10) break;
}
You may add a sequence prefix if you like.
const seq = fini("AAA__");
console.log(seq.next().value); // AAA__!
MIT Licensed, see LICENSE file.
FAQs
An infinte set of keys that never ends, never repeats, is somewhat human readble and scales logarythmically.
The npm package infinite-sequence-generator receives a total of 12 weekly downloads. As such, infinite-sequence-generator popularity was classified as not popular.
We found that infinite-sequence-generator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
Next.js has patched a critical vulnerability (CVE-2025-29927) that allowed attackers to bypass middleware-based authorization checks in self-hosted apps.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.