gender-detection

0.1.0 • Public • Published

Gender Detection

Description

A node.js module to determine a person's gender based on his/her first name.

It works also for many languages other than english, supporting international names, using an own datasource of 40.000 records that can be extended. This module is able to clean the text, detecting gender from dirty or unclear names.

Installation

$ npm install gender-detection

Example

// Require gender detection module
const gender = require('gender-detection');
 
let g;
 
// Use it to detect the gender:
= gender.detect('Tim Johnson');
// "male"
 
= gender.detect('Holly');
// "female"
 
= gender.detect('GhJGhgj')
// "unknown"
 
// It works also with unclean or dirty names:
= gender.detect('BiLL$...');
// "male"
 
= gender.detect('::Jenni♥fer::');
// "female"
 
// Extract the first name
const first_name = gender.getFirstName('Mario Bros');
// "mario"

Unit tests

npm test

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i gender-detection

    Weekly Downloads

    985

    Version

    0.1.0

    License

    GPL-3.0

    Unpacked Size

    869 kB

    Total Files

    6

    Last publish

    Collaborators

    • davidemiceli