Socket
Socket
Sign inDemoInstall

wio.db

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wio.db

Gözle okunabilir database modülü.


Version published
Weekly downloads
4.9K
increased by22.73%
Maintainers
1
Weekly downloads
 
Created
Source

Image Image

Image

Yüklemek İçin

npm install  wio.db

Uyarı || Warning

  • Node sürümü 14 gereklidir.
  • Node version 14 is required

Nasıl Kullanılır? || how to use?

TypeScript

import db from "wio.db"

JS

const { Database } = require("wio.db");
const  db  = new Database("myDatabase");

// Data set | get
db.set("data1", 1);
db.get("data1");
db.fetch("data1");

// Data exists

db.has("data1");
db.exists("data2");

// Get all data

db.all(5); || db.all();
db.fetchAll(5); || db.fetchAll();

// To JSON

db.toJson(5); || db.toJson();

// Delete data

db.delete("key");
db.deleteAll();

// Get data type

db.type("data1"); // ---> number

// DB Array methods
db.push("array1", 10);
db.pull("array1", 10);
db.arrayHasValue("array1", 10);
db.valueArray();
db.keyArray();

// DB Math metods

db.math("data1","*", 3);
db.add("data1", 10);
db.substr("data1", 5);

// DB Finding methods

db.included("da");
db.startsWith("da");
db.findAndDelete((key,value) => {
    return key.includes("data");
});

// Infos
console.log(db.size);
console.log(db.totalDBSize);
console.log(Database.DBCollection);


// Destroy DB
db.destroy();

Bana ulaşabileceğiniz yerler. || Bugs report

İnstagram

Keywords

FAQs

Package last updated on 15 Mar 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