# syllable-parser

> A Javascript library that parses Turkish words to syllables.

Latest version **1.0.1** (published 2022-09-18) · MIT license · 0 weekly downloads

## Install

```sh
npm install syllable-parser
pnpm add syllable-parser
yarn add syllable-parser
bun add syllable-parser
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2022-09-18 |
| First published | 2022-09-13 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 16.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 5 |
| Author | Ender CAN |
| Maintainers | endrcn |
| Keywords | syllable, turkish, syllable |

## Links

- npm: https://www.npmjs.com/package/syllable-parser
- Repository: https://github.com/endrcn/syllable-parser
- Homepage: https://github.com/endrcn/syllable-parser#readme
- Issues: https://github.com/endrcn/syllable-parser/issues
- npm.io page: https://npm.io/package/syllable-parser

## Recent versions

- 1.0.1 (latest) — 2022-09-18
- 1.0.0 — 2022-09-13

## README

# syllable-parser

[![NPM version](https://img.shields.io/npm/v/syllable-parser.svg)](https://www.npmjs.com/package/syllable-parser)

It is a Javascript library that parses Turkish words to syllables.

## Installation

```
npm install --save syllable-parser
```

## Usage

```js
const SyllableParser = require("syllable-parser");
const syllableParser = new SyllableParser("TR");
console.log(syllableParser.parse("selam"));
// Output: ["se","lam"]
```

You can extract number of syllables.

```js
const SyllableParser = require("syllable-parser");
const syllableParser = new SyllableParser("TR");
console.log(syllableParser.getSyllableCount("selam"));
// Output: 2
```

## Author

**Ender CAN**

- <https://github.com/endrcn>
- <https://twitter.com/endrcn>

## License

Open sourced under the [Apache-2.0 LICENSE](LICENSE).

---
_Source: https://npm.io/package/syllable-parser · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
