
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
stripe-id-generator
Advanced tools
Generates random ids with a prefix (a la Stripe)
npm i stripe-id-generator # or
yarn add stripe-id-generator
Simple case:
const IdGenerator = require('stripe-id-generator');
const generator = new IdGenerator();
const id = generator.new('cus');
console.log(id); // cus_lO1DEQWBbQAACfHO
Predefined set of allowed prefixes (to avoid mistakes):
const IdGenerator = require('stripe-id-generator');
const generator = new IdGenerator(['cus', 'con']);
const id = generator.new('cus');
console.log(id); // cus_lO1DEQWBbQAACfHO
generator.new('cli'); // throws
To get a uid (id with a given length and without prefix):
const IdGenerator = require('stripe-id-generator');
const generator = new IdGenerator(['cus', 'con']);
const id = generator.newUid(10);
console.log(id); // lO1DEQWBbQ
Fork from Auth0
This project is licensed under the MIT license. See the LICENSE file for more info.
FAQs
Generates random ids with a prefix (a la Stripe)
The npm package stripe-id-generator receives a total of 46 weekly downloads. As such, stripe-id-generator popularity was classified as not popular.
We found that stripe-id-generator demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.