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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@tcknvkn/angular

v1.0.0

Published

Angular için TC Kimlik No (TCKN) ve Vergi Kimlik No (VKN) doğrulama kütüphanesi

Readme

@tcknvkn/angular

@tcknvkn/angular, Angular projelerinde TCKN (TC Kimlik No) ve VKN (Vergi Kimlik No) doğrulama işlemleri için hazırlanmış hafif bir validator kütüphanesidir.

Bu paket yalnızca algoritmik/format doğrulaması yapar. Nüfus veya vergi servislerinden kimlik sahibine ait gerçek doğrulama yapmaz.

Kurulum

npm install @tcknvkn/angular

Neden Bu Kütüphane?

  • Angular Reactive Forms ve template-driven forms desteği
  • TCKN validator ve VKN validator fonksiyonları
  • Ham değer doğrulama (validateTckn, validateVkn)
  • Toplu doğrulama (validateMultipleTckn, validateMultipleVkn)
  • TypeScript ile güçlü tip desteği
  • Sunucu çağrısı olmadan hızlı istemci tarafı doğrulama

Hızlı Kullanım

Reactive Forms

import { FormControl, Validators } from "@angular/forms";
import { tcknValidator, vknValidator } from "@tcknvkn/angular";

const tcknControl = new FormControl("", {
  validators: [Validators.required, tcknValidator({ allowEmpty: false })]
});

const vknControl = new FormControl("", {
  validators: [vknValidator()]
});

Template-Driven Forms

import { Component } from "@angular/core";
import { FormsModule } from "@angular/forms";
import { TcknValidatorDirective, VknValidatorDirective } from "@tcknvkn/angular";

@Component({
  standalone: true,
  selector: "app-root",
  imports: [FormsModule, TcknValidatorDirective, VknValidatorDirective],
  template: `
    <input name="tckn" ngModel tcknValidator />
    <input name="vkn" ngModel vknValidator />
  `
})
export class AppComponent {}

API Referansı

validateTckn(input: string): ValidationResult

Verilen değeri normalize ederek (yalnızca rakamları alır) TCKN algoritmasına göre doğrular.

validateVkn(input: string): ValidationResult

Verilen değeri normalize ederek VKN algoritmasına göre doğrular.

validateMultipleTckn(inputs: string[]): ValidationResult[]

Birden fazla TCKN değerini tek çağrıda doğrular.

validateMultipleVkn(inputs: string[]): ValidationResult[]

Birden fazla VKN değerini tek çağrıda doğrular.

validateTcknValue(value: string, options?: ValidatorOptions): ValidationErrors | null

Angular form hata formatında TCKN sonucu döndürür.

validateVknValue(value: string, options?: ValidatorOptions): ValidationErrors | null

Angular form hata formatında VKN sonucu döndürür.

tcknValidator(options?: ValidatorOptions): ValidatorFn

Reactive Forms için TCKN validator üretir.

vknValidator(options?: ValidatorOptions): ValidatorFn

Reactive Forms için VKN validator üretir.

TcknValidatorDirective / VknValidatorDirective

Template-driven form kullanımında doğrudan HTML üzerinde doğrulama sağlar.

Hata Formatı

TCKN için:

{
  tckn: {
    errors: string[];
    value: string;
  }
}

VKN için:

{
  vkn: {
    errors: string[];
    value: string;
  }
}

Test ve Build

npm ci
npm test
npm run build

İlgili Bağlantılar

  • Kütüphaneler: https://www.tcknvkn.com/kutuphaneler
  • Angular kütüphane sayfası: https://www.tcknvkn.com/kutuphaneler/angular
  • TC üret: https://www.tcknvkn.com/tc-uret
  • TC no üret: https://www.tcknvkn.com/tc-no-uret
  • TC üretici: https://www.tcknvkn.com/tc-uretici
  • TCKN üret: https://tcknvkn.com/tckn-uret
  • Vergi no üret: https://www.tcknvkn.com/vergi-no-uret
  • Vergi no üretici: https://www.tcknvkn.com/vergi-no-uretici
  • VKN üret: https://tcknvkn.com/vkn-uret

Lisans

MIT