Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@dvlden/alea
Advanced tools
Pseudorandom number generator created by Johannes Baagøe, but rewritten a bit differently. If you ever needed a seedable random numbers, this is one way to achive that with a simple ES generator function.
Check test cases if you are still wondering what it does.
Use your favourite package manager... In my case that's pnpm
.
pnpm i @dvlden/alea
Browser
import { alea } from '@dvlden/alea'
const random = alea(123) // where `123` is your seed
console.log(random.next().value) // 0.1198014235123992
Node
const { alea } = require('@dvlden/alea')
const random = alea(123) // where `123` is your seed
console.log(random.next().value) // 0.1198014235123992
Iterations
Since this PRNG has been written as generator, it will yield a new value whenever you need it. Do any loop that you want, just make sure to constraint it as a generator will do it infinitely otherwise.
import { alea } from '@dvlden/alea'
const random = alea(123)
for (let i = 0; i < 10; i++) {
console.log(random.next().value)
}
FAQs
Pseudorandom number generator based on Alea algorithm.
We found that @dvlden/alea 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.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.