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

7945db

v1.0.2

Published

basit ve yenilikçi noSQL database

Readme

7945DB - Güvenli ve Okunamaz Database Sistemi

7945DB, .7945db uzantılı tamamen okunamaz database dosyaları ve .7945d uzantılı özel fonksiyon dosyaları ile çalışan güvenli bir Node.js database modülüdür.

🚀 Özellikler

  • 🔒 Tamamen Okunamaz: .7945db dosyaları şifrelenmiş formatta
  • 📝 Özel Fonksiyon Desteği: .7945d dosyaları ile özel database fonksiyonları
  • 🛡️ Güvenli: AES-256 şifreleme ile veri koruması
  • 🔧 Esnek API: Basit ve anlaşılır metodlar
  • 📊 Zengin Fonksiyonlar: Arama, istatistik, analiz ve daha fazlası

📦 Kurulum

npm install 7945db

🎯 Hızlı Başlangıç

Temel Kullanım

const db7945 = require('7945db');
const db = db7945();

// Database dosyasını ayarla
db.file('./veritabanım.7945db');

// Tablo ve değişken ekle
db.add({ type: 'table', name: 'kullanıcılar' });
db.add({ 
    type: 'variable', 
    name: 'kullanıcı-adı', 
    table: 'kullanıcılar', 
    value: 'str', 
    cstm_value: 'admin' 
});
db.add({ 
    type: 'variable', 
    name: 'şifre', 
    table: 'kullanıcılar', 
    value: 'str', 
    cstm_value: '123456' 
});

// Değer oku
const kullanici = db.get({ table: 'kullanıcılar', name: 'kullanıcı-adı' });
console.log('Kullanıcı:', kullanici); // "admin"

// Değer güncelle
db.set('kullanıcılar', 'şifre', 'yeniŞifre123');

// Database'i göster
db.show();

Gelişmiş Fonksiyonlar

// Tüm tabloları listele
const tablolar = db.listAllTables();
console.log('Tablolar:', tablolar);

// Tablo detaylarını getir
const tabloBilgisi = db.getTableInfo({ tableName: 'kullanıcılar' });
console.log('Tablo Bilgisi:', tabloBilgisi);

// Değer ara
const sonuçlar = db.searchDatabase({ searchTerm: 'admin' });
console.log('Arama Sonuçları:', sonuçlar);

// İstatistikler
const istatistikler = db.getDatabaseStatistics();
console.log('İstatistikler:', istatistikler);

// Değişkenleri listele
const değişkenler = db.listTableVariables({ tableName: 'kullanıcılar' });
console.log('Değişkenler:', değişkenler);

📁 Dosya Yapısı

.7945db Dosyaları

  • 🔒 Tamamen şifrelenmiş ve okunamaz
  • 📁 Kullanıcı tarafından belirlenen herhangi bir yerde olabilir
  • 💾 Otomatik kaydetme özelliği

.7945d Dosyaları

  • 📝 Özel database fonksiyonlarını içerir
  • 🔧 Modülün çekirdek fonksiyonlarını tanımlar
  • 🎯 Okuma, arama, analiz fonksiyonları

🛠️ API Referansı

Temel Metodlar

db.file(path)

Database dosyasını ayarlar.

db.file('./veritabanım.7945db');

db.add(options)

Tablo veya değişken ekler.

// Tablo ekle
db.add({ type: 'table', name: 'ürünler' });

// Değişken ekle
db.add({ 
    type: 'variable', 
    name: 'fiyat', 
    table: 'ürünler', 
    value: 'num', 
    cstm_value: 100 
});

db.get(options)

Değişken değerini okur.

const deger = db.get({ 
    table: 'ürünler', 
    name: 'fiyat' 
});

db.set(table, variable, value)

Değişken değerini günceller.

db.set('ürünler', 'fiyat', 150);

db.show()

Database içeriğini konsola yazdırır.

db.show();

Gelişmiş Fonksiyonlar

db.listAllTables()

Tüm tabloları listeler.

db.getTableInfo({ tableName })

Tablo detaylarını getirir.

db.listTableVariables({ tableName })

Tablonun tüm değişkenlerini listeler.

db.searchDatabase({ searchTerm })

Database'de değer arar.

db.getDatabaseStatistics()

Database istatistiklerini getirir.

db.readVariable({ tableName, varName })

Değişken değerini okur.

db.conditionalRead({ tableName, conditions })

Koşullu okuma yapar.

🔒 Güvenlik

7945DB, verilerinizi çok katmanlı şifreleme ile korur:

  • 🔑 AES-256-CBC şifreleme
  • 🎯 Özel binary format
  • 📁 Dosya bütünlük kontrolleri
  • ⚡ Otomatik şifreleme/çözme

💡 Örnek Senaryolar

Kullanıcı Yönetimi

const db = require('7945db')();
db.file('./kullanıcılar.7945db');

// Kullanıcı tablosu oluştur
db.add({ type: 'table', name: 'kullanıcılar' });
db.add({ type: 'variable', name: 'email', table: 'kullanıcılar', value: 'str' });
db.add({ type: 'variable', name: 'şifre', table: 'kullanıcılar', value: 'str' });
db.add({ type: 'variable', name: 'rol', table: 'kullanıcılar', value: 'str', cstm_value: 'kullanıcı' });

// Kullanıcı ekle
db.set('kullanıcılar', 'email', '[email protected]');
db.set('kullanıcılar', 'şifre', 'güvenliŞifre123');

// Kullanıcı ara
const kullanıcılar = db.searchDatabase({ searchTerm: 'ali' });

Ürün Kataloğu

const db = require('7945db')();
db.file('./ürünler.7945db');

db.add({ type: 'table', name: 'ürünler' });
db.add({ type: 'variable', name: 'isim', table: 'ürünler', value: 'str' });
db.add({ type: 'variable', name: 'fiyat', table: 'ürünler', value: 'num' });
db.add({ type: 'variable', name: 'stok', table: 'ürünler', value: 'num' });

// İstatistikleri görüntüle
const stats = db.getDatabaseStatistics();
console.log(`Toplam ${stats.tableCount} tablo, ${stats.totalVariables} değişken`);

🐛 Sorun Giderme

Database dosyası okunamıyor

try {
    db.file('./veritabanım.7945db');
} catch (error) {
    console.error('Database hatası:', error.message);
}

Değişken bulunamadı hatası

// Önce değişkenin var olduğundan emin olun
if (db.get({ table: 'tablo', name: 'değişken' })) {
    // İşlemler
}

📄 Lisans

MIT License - detaylar için LICENSE dosyasına bakın.

sorunlar

github sorun


7945DB - Güvenli ve güçlü database çözümünüz! 🚀