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

srd-enterprise-helper-framework

v1.0.0

Published

SRD .NET 9 kurumsal helper framework paketleri. npm install ile NuGet/DLL artifact'lerini projeye indirir.

Readme

SRD Enterprise Helper Framework

Bu solution, SRD_ULTRA_MASTER_HELPER_FRAMEWORK_SPEC.docx dokümanına göre yeniden düzenlenmiş kurumsal .NET 9 helper/framework altyapısıdır.

Solution Yapısı

  • SRD.Core: Ana aggregate package.
  • SRD.Core.Extensions: Null, conversion, string, collection, date/time ve numeric extension metotları.
  • SRD.Core.Validation: Rule-based validation altyapısı.
  • SRD.Core.Security: AES, SHA256, PBKDF2 password hash, OTP, secure random, PII mask ve compact JWT helper.
  • SRD.Core.Logging: Structured logging ve correlation context.
  • SRD.Core.Diagnostics: Performance scope ve measurement.
  • SRD.Core.IO: Güvenli dosya okuma/yazma ve file hash.
  • SRD.Core.Json: ToJson, FromJson, IsValidJson, pretty/compressed JSON.
  • SRD.Core.Network: HTTP, ping, DNS ve internet bağlantı yardımcıları.
  • SRD.Core.Threading: Retry policy, circuit breaker, async lock, timeout ve controlled parallel execution.
  • SRD.Core.Expressions: Dynamic filter/order expression builder.
  • SRD.Core.Reflection: Reflection property helperları.
  • SRD.Core.Data: DataRow/DataTable ve SQL transaction/parameter helperları.
  • SRD.Core.Caching: Thread-safe in-memory cache helper.
  • SRD.Core.UI: Windows Forms MessageBox/dialog helperları.
  • SRD.Core.Localization: Basit culture-based translation manager.
  • SRD.Core.Testing: Test data builder foundation.
  • SRD.Core.Benchmark: Benchmark projeleri için marker/foundation.
  • SRD.Helper: Eski paket adına uyumluluk facade projesi.

Örnek Kullanım

using SRD.Core.Extensions;
using SRD.Core.Data;
using SRD.Core.Security;
using SRD.Core.UI;

var currCode = dr.Get("CustomerCurrCode", "USD", setDefaultWhenNull: true);
var phoneValid = "05559998877".IsNumeric();
var amount = "12,50".ToDecimal().Round(2);
var slug = "Şirket Adı".ToSlug();

var encrypted = CryptoHelper.EncryptAes("secret", "key");
var confirmed = DialogHelper.AskDelete();

Eklenen Atlanmış Alanlar

Belgedeki isteklere ek olarak kurumsal kullanım için Guard, Result<T>, password hashing doğrulama, PII masking, correlation context, retry/circuit breaker, timeout wrapper, dynamic order/filter expression, cache TTL ve SQL transaction rollback güvenliği eklendi.

Komutlar

dotnet build SRD.Core.sln
dotnet test SRD.Core.sln
dotnet pack src/SRD.Core/SRD.Core.csproj -c Release -o artifacts
dotnet pack src/SRD.Helper/SRD.Helper.csproj -c Release -o artifacts

npm ile Kurulum

Bu repo npm paketi olarak da kurulabilir. Paket, .NET NuGet/DLL artifact'lerini node_modules altına taşır.

npm install srd-enterprise-helper-framework
npx srd-helper-info

.NET projede local NuGet source olarak kullanmak için:

dotnet nuget add source ".\node_modules\srd-enterprise-helper-framework\artifacts" -n SRDLocal
dotnet add package SRD.Core --source ".\node_modules\srd-enterprise-helper-framework\artifacts"

Detaylı npm rehberi: docs/NPM-INSTALL.md

Metot Kataloğu

Arama odaklı tam kapsamlı metot kataloğu: docs/METHOD-CATALOG.md