fast-prime-gen

1.0.0 • Public • Published

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);

Package Sidebar

Install

npm i fast-prime-gen

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

5.33 kB

Total Files

5

Last publish

Collaborators

  • akgupta89