fast-prime-gen
v1.0.0
Published
Generate sequential primes through a generator
Downloads
2
Maintainers
Readme
Fast Prime Gen
A NodeJS/JavaScript package to generate prime numbers fast and efficiently
Overview
Fast Prime Gen generates prime numbers procedurally on the fly. Instead of using a pre-generated list, this tool will spit out the next prime number using an algorithm based on Vladmir Agafonkin's work.
How To Use
Install the Package
npm install fast-prime-gen
Examples
Initialize the Generator
const PostponedSieve = require('fast-prime-gen');
const generator = PostponedSieve();
Run the generator one time
console.log(generator.next().value);
Run the generator multiple times
console.log(generator.next().next().next().value);
Skip entries
console.log(generator.skip(100).next().value);