npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@cantez/turkishify

v1.0.0

Published

Harmonious suffixes for Turkish nouns. Zero dependencies.

Readme

Turkishify

Harmonious suffix implementation for Turkish nouns in JavaScript. Zero dependencies.

🇬🇧: A tiny JavaScript library to generate Turkish suffixes based on nouns. This library helps you correctly form Turkish grammatical cases (belirtme, yönelme, bulunma, and ayrılma hâli) while following Turkish vowel harmony rules.

🇹🇷: İsimlere Türkçe ekler getirmeye yarayan minik bir JavaScript kütüphanesi. Bu kütüphane, Türkçe ses uyumu kurallarına uygun olarak ismin hallerini (belirtme, yönelme, bulunma ve ayrılma hâli) doğru şekilde oluşturmanıza yardımcı olur.

Bazı popüler uygulamaların Türkçe versiyonlarında görülen doğal hissettirmeyen ek hatalarını yok etmeyi amaçlamıştır. Bunlar:

  • Mehmet'dan (Snapchat)
  • Fatma'e (Instagram Reels)

gibi dil bilgisi açısından yanlış olan yazılışlar örnekleridir.

Features / Özellikler

  • Generates correct Turkish suffixes for:
    • Accusative case (Belirtme hâli) - e.g., "evi", "kediyi", "gözlüğü"
    • Dative case (Yönelme hâli) - e.g., "eve", "arabaya"
    • Locative case (Bulunma hâli) - e.g., "evde", "arabada"
    • Ablative case (Ayrılma hâli) - e.g., "evden", "arabadan"
  • Handles proper nouns with correct capitalization
  • Implements Turkish vowel harmony rules
  • Manages consonant softening
  • Supports buffer consonants (y) when needed

Installation / Yükleme

Either of / Herhangi biri

npm install @cantez/turkishify
yarn add @cantez/turkishify
pnpm install @cantez/turkishify

Usage / Kullanım

const Turkishify = require("@cantez/turkishify");

// Accusative case (Belirtme hâli)
console.log(Turkishify.accusative("ev")); // "evi"
console.log(Turkishify.accusative("kedi")); // "kediyi"
console.log(Turkishify.accusative("gözlük")); // "gözlüğü"

// Dative case (Yönelme hâli)
console.log(Turkishify.dative("ev")); // "eve"
console.log(Turkishify.dative("araba")); // "arabaya"

// Locative case (Bulunma hâli)
console.log(Turkishify.locative("ev")); // "evde"
console.log(Turkishify.locative("araba")); // "arabada"

// Ablative case (Ayrılma hâli)
console.log(Turkishify.ablative("ev")); // "evden"
console.log(Turkishify.ablative("araba")); // "arabadan"

// Proper nouns
console.log(Turkishify.accusative("Türkiye", true)); // "Türkiye'yi"
console.log(Turkishify.dative("İstanbul", true)); // "İstanbul'a"

API Reference / API İçeriği

Methods / Metotlar

accusative(word, isProperNoun = false)

Generates the accusative case form of a word.

dative(word, isProperNoun = false)

Generates the dative case form of a word.

locative(word, isProperNoun = false)

Generates the locative case form of a word.

ablative(word, isProperNoun = false)

Generates the ablative case form of a word.

Parameters / Parametreler

  • word (string): The word to generate the suffix for / Ek oluşturulacak kelime
  • isProperNoun (boolean): Whether the word is a proper noun (default: false) / Kelimenin özel isim olup olmadığı durumu

Source / Kaynak

This library is based on Turkish grammar rules as described in the Turkish grammar Wikipedia article.