This project, simply, is a single API endpoint designed to respond with a configured string as your next social media password. You can simply clone the project, by following:
git clone https://github.com/ME-ATish/password-Generator.gitThen, install the dependencies, and run the project:
npm install
npm startAnd get your next perfect password from this endpoint, throughout your own browser:
http://localhost:3006/passgen?len=12Our wonderful project has several options for you, so you should never be worried about customizing your stupid password. You can pass the following options as query string to our API endpoint:
len(required): the overall length of supposed password. The length of the password couldn't be smaller than 8 characters!uppers(optional): the count of uppercase letters you want to have in your password.lowers(optional): the count of lowercase letters in your future password.number(optional): how many numbers you want to have in your password.special(optional): want some fancy special characters like !, @, #, etc.? Just tell us how many of them will satisfy you.salt(optional): add something at the beginning of your password.pepper(optional): add something followed by your password.exl(optional): specify some characters to be excluded. Please note that you cannot exclude the sharp (#) character, due to URL structures
For instance:
http://localhost:3006/passgen?len=12&uppers=2&lowers=7&special=2We are going to do a lot of other fancy things, like:
- making optional things, actually, optional! (they're not, yet:)))
- adding
numbersto your phenomenal passwords. - excluding some characters you would to.
- adding your supposed salt/pepper to your password.
You have a pull request? Wow, so sweet of you! Send it so we can review it. Otherwise, we're sorry.
No license, hahaha.