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

n3rthusdb

Package Overview
Dependencies
Maintainers
2
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

n3rthusdb

database modülü

  • 1.0.8
  • unpublished
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
2
Weekly downloads
 
Created
Source

n3rthusdb

MADE İN TURKEY DATABASE MODÜLÜ

for download

npm install --save n3rthusdb

USE


const { Database } = require("n3rthusdb")
const dbOptions = {
    "file":"database",
    "autoFile": true,
}
const db = new Database(dbOptions)
Hatalar Düzeltildi!

EXAMPLE

//Dil = Türkçe
db.yaz("veri","belirti") /* database veri yazar */
db.kont('veri') /* Belirtilen Veriyi Kontrol Eder */
db.bul("veri") /* Belirtilen veriyi Bulur */
db.sil("veri") /* database'den sil */
db.yaz("puan",10) /* database veri yazar */
db.topla("puan",1) /* Belirtilen verinin numarasını Belirtilen Sayı İle Toplar */
db.çıkar("puan",1) /* Belirtilen verinin numarasını Belirtilen Sayı İle Çıkartır */
db.hepsi() /* Database Dosyasındaki Verileri Gösterir */
db.sıfırla() /* Databasei Sıfırlar */
//language = English
db.has('n3rthus') /* Checks Specified Data */
db.get("data") /* Finds the specified data */
db.push("1",2) /*  */
db.unpush("1",2) /*  */
db.set("data","symptom") /* database writes data */
db.delete("data") /* delete from database */
db.backup("data") /* backs up the file with the specified name */
db.add("xp",1) /* Adds the number of the specified data with the specified number */
db.remove("xp",1) /* Subtracts the number of the specified data with the specified number */
db.all() /* Shows Data in Database File */
db.deleteall() /* Database Reset */

SET CODE

const { Database } = require("n3rthusdb")
const dbOptions = {
    "file":"database",
    "autoFile": true,
    "jsonspaces": 5
}
const db = new Database(dbOptions)
db.set("Data",`Sample`) /* find from database */
console.log(db.get("Data"))
// CONSLOE => Sample

DELETE CODE

const { Database } = require("n3rthusdb")
const dbOptions = {
    "file":"database",
    "autoFile": true,
    "jsonspaces": 5
}
const db = new Database(dbOptions)
db.delete("data") /* delete from database */

HAS CODE

const { Database } = require("n3rthusdb")
const dbOptions = {
    "file":"database",
    "autoFile": true,
    "jsonspaces": 5
}
const db = new Database(dbOptions)
if(db.has('n3rthus')){ /* check database */
    var n3rthus = db.get('n3rthus') /* If there is data, send the specified data to the console */
} else {
    var n3rthus = "!" /* If no data, set the data to "!" set to */
}
console.log(n3rthus) /*Sends Prefix*/

//veri yok ise KONSOL => !
//veri var ise KONSOL => <veri>

GET CODE

const { Database } = require("n3rthusdb")
const dbOptions = {
    "file":"database",
    "autoFile": true,
    "jsonspaces": 5
}
const db = new Database(dbOptions)
/*{"veri":"TEST"}*/
console.log(db.get("veri"))

//CONSOLE => TEST

BACKUP CODE

const { Database } = require("n3rthusdb")
const dbOptions = {
    "file":"database",
    "autoFile": true,
    "jsonspaces": 5
}
const db = new Database(dbOptions)
db.backup("veri") /* backs up the file with the specified name */

ALL CODE

const { Database } = require("n3rthusdb")
const dbOptions = {
    "file":"database",
    "autoFile": true,
    "jsonspaces": 5
}
const db = new Database(dbOptions)
let all = db.all() /* Show Data in Database File  */
console.log(all)
//KONSOL => { "stated": "veri", "stated2": "veri2", "stated3": "veri3", "stated4": "veri4", "stated5": "veri5"}

PUSH CODE

db.push("1",2)
//Database => 
{
         "1": [
             2
         ]
}

UNPUSH CODE

db.unpush("1",2)
//Old_Database => 
{
         "1": [
             2
         ]
}
//Old_Database => 
{
         "1": []
}

DELETEALL CODE

const { Database } = require("n3rthusdb")
const dbOptions = {
    "file":"database",
    "autoFile": true,
    "jsonspaces": 5
}
const db = new Database(dbOptions)
db.deleteall() /* Database ALL DELETE */

ALL CODE

const { Database } = require("n3rthusdb")
const dbOptions = {
    "file":"database",
    "autoFile": true,
    "jsonspaces": 5
}
const db = new Database(dbOptions)
// DATABASE => {"veri":9}
db.add("puan",1) /* Belirtilen verinin numarasını Belirtilen Sayı İle Toplar */
// OLD DATABASE => {"veri":9}
// NEW DATABASE => {"veri":10}

REMOVE CODE

const { Database } = require("n3rthusdb")
const dbOptions = {
    "file":"database",
    "autoFile": true,
    "jsonspaces": 5
}
const db = new Database(dbOptions)
// DATABASE => {"veri":10}
db.remove("puan",5) /* Belirtilen verinin numarasını Belirtilen Sayı İle Çıkartır */
// OLD DATABASE => {"veri":10}
// NEW DATABASE => {"veri":5}

FAQs

Package last updated on 27 Nov 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