1.1.3 • Published 10 years ago

guess-who v1.1.3

Weekly downloads
51
License
-
Repository
github
Last release
10 years ago

Guess Who

Extract names from usernames and email addresses with Node.js.

Installation

To add this to your existing project, install this as an NPM module.

npm install guess-who

Otherwise, clone the repo, install dependencies, and run the example.

git clone https://github.com/fraction/guess-who.git && cd guess-who
npm install
node examples/name-from-email

Usage

After you've installed guess-who, require it and use it!

gw = require('guess-who');

gw('johndoe', function (username, name) {
  console.log('"' + username + '" is actually "' + name.join(' ') + '"');
  // "johndoe" is actually "john doe"
});

Take a look at the examples directory to see what else can be done.

Support

Please open an issue for questions and concerns.

Contributing

Fork the project, commit your changes, and open a pull request.

1.1.3

10 years ago

1.1.2

10 years ago

1.1.1

10 years ago

1.1.0

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago