gender-detection-from-name
TypeScript icon, indicating that this package has built-in type declarations

1.9.0 • Public • Published

Gender detection from name

Coverage Status Maintainability npm Donate

NPM

Library to detect the gender of a first name. An optional language parameter can be specified to improve the detection, for example: Andrea in EN is female, in IT is male. If no language is specified, EN has priority.

Install

npm i gender-detection-from-name

Example

const { getGender } = require('gender-detection-from-name');

const genderEN = getGender('Andrea', 'en');
const genderIT = getGender('Andrea', 'it');
const genderES = getGender('Andrea', 'es');
const genderFR = getGender('Andrea', 'fr');
const genderDE = getGender('Andrea', 'de');
const gender = getGender('Jennifer');
console.log(genderEN); // female
console.log(genderIT); // male
console.log(genderES); // male
console.log(genderFR); // male
console.log(genderDE); // female
console.log(gender); // female

Supported languages

en, it, es, fr, de

Run tests

npm test

Run lint

npm run lint

Contribute

Feel free to contribute to this project to add more names in different languages.

Author

Package Sidebar

Install

npm i gender-detection-from-name

Weekly Downloads

1,139

Version

1.9.0

License

MIT

Unpacked Size

2.11 MB

Total Files

16

Last publish

Collaborators

  • davideviolante