A lightweight, performant node.js app to bulk check the availablility of usernames of a specified website.
- Have node.js and npm installed
- Download the zip of the latest release
- Unzip the contents to their own folder and navigate to said folder
- Install the dependencies with one of the following commands
npm install
yarn install
pnpm install (recommended)
-
Put the list of usernames you want to check in
usernames.txt
, formatted with a new username on a new line. Find inspiration here. -
Run the script with the following commands:
node index.js
- Allow the app to run, after which a list of available usernames will appear in
available_usernames.txt
- Clone the repository or download the zip (not from releases)
- Navigate to the app's folder and install the dependencies with one of the following commands
npm install
yarn install
pnpm install (recommended)
-
Put the list of usernames you want to check in
usernames.txt
, formatted with a new username on a new line. Find inspiration here. -
If you want to run in a development environment (nodemon) run the following command:
npm run dev
yarn run dev
pnpm run dev (recommended)
Otherwise if you want to build and then run the build javascript run:
npm run build && npm run prod
yarn run build && yarn run prod
pnpm run build && pnpm run prod (recommended)
- Allow the app to run, after which a list of available usernames will appear in
available_usernames.txt
- Please be aware that some sites prevent this method of checking names. Consequently, the effectiveness of this approach may be limited in such cases.
- Additionally, it is important to note that usernames that are considered "banned" may erroneously appear as available, despite being unavailable.