Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jhermsmeier/node-soundex-phonetics
Soundex phonetic algorithm
https://github.com/jhermsmeier/node-soundex-phonetics
phonetic-algorithm phonetics soundex
Last synced: 22 days ago
JSON representation
Soundex phonetic algorithm
- Host: GitHub
- URL: https://github.com/jhermsmeier/node-soundex-phonetics
- Owner: jhermsmeier
- License: mit
- Created: 2015-02-14T14:12:31.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-10-18T01:01:47.000Z (about 7 years ago)
- Last Synced: 2024-04-26T03:00:50.132Z (7 months ago)
- Topics: phonetic-algorithm, phonetics, soundex
- Language: JavaScript
- Size: 8.79 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Soundex
[![npm](http://img.shields.io/npm/v/soundex-phonetics.svg?style=flat-square)](https://npmjs.com/soundex-phonetics)
[![npm downloads](http://img.shields.io/npm/dm/soundex-phonetics.svg?style=flat-square)](https://npmjs.com/soundex-phonetics)
[![build status](http://img.shields.io/travis/jhermsmeier/node-soundex-phonetics.svg?style=flat-square)](https://travis-ci.org/jhermsmeier/node-soundex-phonetics)## Install via [npm](https://npmjs.com)
```sh
$ npm install soundex-phonetics
```## Usage
```js
var soundex = require( 'soundex-phonetics' )
``````js
if( soundex( 'Ekzampul' ) === soundex( 'Example' ) ) {
// It sounds similar!
}
```