https://github.com/sprintcube/react-password-generator
A password generator tool using React
https://github.com/sprintcube/react-password-generator
password-generator reactjs tools
Last synced: 6 months ago
JSON representation
A password generator tool using React
- Host: GitHub
- URL: https://github.com/sprintcube/react-password-generator
- Owner: sprintcube
- License: mit
- Created: 2018-03-27T14:40:54.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-08-20T06:54:14.000Z (over 7 years ago)
- Last Synced: 2025-05-06T15:51:40.007Z (8 months ago)
- Topics: password-generator, reactjs, tools
- Language: JavaScript
- Homepage: https://passwordgen.netlify.com/
- Size: 172 KB
- Stars: 4
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Password Generator
An online tool built with React to generate random password strong that consists characters, numbers, and symbols.
It generates a random string each time you click on the Generate button. Also, it allows to copy the generated password to the Clipboard.
## React Concepts
In this demo, following concepts are used.
* Components
* Redux
## Libraries
This tool uses following third-party libraries.
* [rc-slider](https://www.npmjs.com/package/rc-slider) - for range slider
* [rc-checkbox](https://www.npmjs.com/package/rc-checkbox) - for fancy checkbox
* [copy-to-clipboard](https://www.npmjs.com/package/copy-to-clipboard) - for copy to clipboard functionality
* [react-toastify](https://www.npmjs.com/package/react-toastify) - for a fancy toast message
## Development server
To install it on your local server, clone this repository and run `npm install`. Once the installation is completed,
run `npm start` for a dev server. Navigate to `http://localhost:3000/`.
> This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).