https://github.com/ans-4175/password-ga
Password Generator using Genetic Algorithm
https://github.com/ans-4175/password-ga
genetic password
Last synced: 5 months ago
JSON representation
Password Generator using Genetic Algorithm
- Host: GitHub
- URL: https://github.com/ans-4175/password-ga
- Owner: ans-4175
- License: wtfpl
- Created: 2021-11-07T14:46:50.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-12T23:47:13.000Z (almost 4 years ago)
- Last Synced: 2025-03-30T20:33:21.811Z (6 months ago)
- Topics: genetic, password
- Language: JavaScript
- Homepage: https://password.apayak.xyz/
- Size: 544 KB
- Stars: 28
- Watchers: 3
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Password GA
## Quick Start
_If you want to contribute to this project, please fork this repository._
```
cd password-ga
git checkout main
yarn
yarn start
```Open at `localhost:3000`
Look for files in
- `src/App.js`
- `libs/password-ga.js`## Scraping words
To populate the list of words, we are using a scraper on http://kateglo.com. The scraper script can be found here: [./scripts/scraper.js](./scripts/scraper.js). To run the scraper, do this in the root project:
```shell
node scripts/scraper.js
```## Contributing
If you would like to help us with this project you can learn about our initiative from [twitter](https://twitter.com/ans4175/status/1457313278015639553?s=20). Before you contribute to this project, please make sure to read our [CONTRIBUTING](CONTRIBUTING.md) file.
## Tech behind this app
You can learn more about tech stacks that we used by visiting their documentations.
- [React](https://reactjs.org/)
- [Wired](https://wiredjs.com/)
- [React Copy to Clipboard](https://github.com/nkbt/react-copy-to-clipboard)