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

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ü.

  • 4.0.17-beta.2
  • beta
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Image Image

Image

Yüklemek İçin

npm install  wio.db

News

Yaml Support
- Json specific features have also been added to yaml

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 {
    JsonDatabase,
    YamlDatabase
} = require("wio.db");

const  db  = new JsonDatabase("myDatabase");
const yamldb = new YamlDatabase("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.includes("da");
db.startsWith("da");
db.findAndDelete((key,value) => {
    return key.includes("data");
});

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


// Destroy DB
db.destroy();

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

İnstagram Discord

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