Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

efdb

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

efdb

Türkçe basit JsonDB YamlDB veritabanı modülü

  • 1.1.7
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

EfDB

  • Tükçe veritabanı modülü
  • Discord sunucumuz : https://discord.gg/umXR2mspNx

Güncelleme Notları

  • Ufak hata gidermeleri

Örnek

const efDB = require("efdb")
const db = new efDB({
    adapter:"JsonDB",//JsonDB veya YamlDB varsayılan JsonDB
    dataName:"test",//veritabanı dosya isimi girilmezse efDB yapılır
    dataFolder:"deneme"//veritabanı klasör isimi girilmezse efDB yapılır
})

db.set("x.y.z", "abc") // abc
 
db.get("x") // {y: {z: "abc"}}
db.fetch("x") // {y: {z: "abc"}}
db.all() // {x: {y: {z: "abc"}}}
 
db.push("a", "hello") //  ["hello"]
db.push("a", "world") //  ["hello", "world"]
db.unpush("a", "hello") // ["world"]

db.has("x") // true
db.delete("x") // true
db.deleteAll() // true

Keywords

FAQs

Package last updated on 19 Feb 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc