
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
genetics-js
Advanced tools
Introduction • Installation • Usage • Roadmap • Contributing • Authors • License
Evolutionary computing is one of the main techniques nowadays for solving complex optimization problems. This library provides with the basic structure for implementing the most common evolutionary algorithms, such as genetic algorithms.
Evolutionary algorithms basic structure
Evolutionary algorithms are composed basically by four elements:
This framework is going to provide the most common techniques for each component.
Currently project is under development (no stable version released :warning:), but it is going to be installed through npm:
npm install genetics-js
No major versions have been released, so only Individuals creation is implemented:
import Genetics from 'genetics-js';
const { BinaryIndividual } = Genetics.individual;
let individual = new BinaryIndividual('001100');
individual.genotype // [false, false, true, true, false, false]
The roadmap is strictly determined by the operations that are going to be implemented:
v0.1.0
: Implementation of individuals.v0.2.0
: Implementation of mutation operators.v0.3.0
: Implementation of recombination operators.v0.4.0
: Implementation of parent selection methods.v0.5.0
: Implementation of survivor selection methods.v0.6.0
: Implementation of population and offspring management.v0.7.0
: Implementation of common evolutionary algorithms with fixed configurations.The library has been successfully used in the following projects:
You can report a bug, or request a feature with an issue:
Any help would be welcome :smile:.
This project is licensed under the MIT License
FAQs
Genetic and evolutionary algorithms framework for the web
The npm package genetics-js receives a total of 21 weekly downloads. As such, genetics-js popularity was classified as not popular.
We found that genetics-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.