
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
what-gender
Advanced tools
Determine the gender of person using first name, accepts up to 100 names at the time
Guessing the name based on the first name. You can pass it one name or an array to up to 100 names, if you try pass more you'll get the error back.
var gender = require('what-gender');
gender(['mike', 'joe', 'donald'], function(err, result) {
if(err) console.log('this is error', err)
console.log(result)
});
Response will look like this: Array of objects
[
{"name":"Anna","gender":"female","samples":211,"accuracy":97},
{"name":"Jack","gender":"male","samples":105,"accuracy":100},
{"name":"Stephen","gender":"male","samples":48,"accuracy":100}
]
gender('mike', {key: EUU123Af}, function(err, result) {
console.log(result)
// {"name":"diana","gender":"female","samples":36,"accuracy":100,"duration":"41ms"}
})
Pass up to 3 arguments:
You can add couple of options, so results could be more accurate.
Request will be returned as:
{"name":"John","country":"US","gender":"male","samples":4,"accuracy":100,"duration":"38ms"} //Country: US
{"name":"Tanja","country":"DE","gender":"female","samples":10,"accuracy":100,"duration":"36ms"} //Country: Germany.
{"name":"Thomas","country":"DE","gender":"male","samples":13,"accuracy":100,"duration":"39ms"} //Country: Based on the browser language.
Keep in mind this is commercial API, and you get only 50 names per month, WITHOUT the key, if you register account and get your key you are bumping that to 500 names, not requests but names.
Made with support from vanila.io, probably one of the best places to code your dream app.
FAQs
Determine the gender of person using first name, accepts up to 100 names at the time
We found that what-gender demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.