Socket
Socket
Sign inDemoInstall

midb

Package Overview
Dependencies
3
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    midb

A cool JSON-based database using tables! :)


Version published
Weekly downloads
1
decreased by-80%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

midb

Perfect tables-based database made for you! <3

  • Methods:

Install:

npm i midb

Setup:

import { Database } from "midb";

const db = new Database({
    path: './database',
    tables: ['main']
})

db.on('ready', () => {
    console.log('Database is connected.')
})

db.start() // let's start the class

Methods

Set

Add or re-set something to the database.

  • Usage: <Database>.set(key: string, value: any, table?: string): Promise<void>

  • Example:

// ...
(async() => {
    await db.set('foo', 'bar')
    await db.set('collection.admin', 'Mid', 'Users') // add 'Users' table to the constructor
})()
// ...

Get

Get something from the database.

  • Usage: <Database>.get(key: string, table?: string): Promise<any>

  • Example:

// ...
(async() => {
    db.get('foo').then(console.log) // 'bar'
    db.get('collection', 'Users').then(console.log()) // { "admin": "Mid" }
})()
// ...

Push

Add a new element to an array in the database.

  • Usage: <Database>.push(key: string, value: any, table?: string): Promise<void>

  • Example:

// ...
(async() => {
    await db.push('foods', 'apple')
    await db.push('foods', 'banana')
    // lets get all:
    db.get('foods').then(console.log) // ['apple', 'banana']
})()
// ...

Remove

Remove an element from an array in the database.

  • Usage: <Database>.remove(key: string, value: any, table?: string): Promise<void>

  • Example:

// ...
(async() => {
    // before:
    db.get('foods').then(console.log) // ['apple', 'banana']
    // lets remove apple:
    await db.remove('foods', 'apple')
    // after:
    db.get('foods').then(console.log) // ['banana']
})()
// ...

Add

Add some amount to a number in the database.

  • Usage: <Database>.add(key: string, value: number, table?: string): Promise<void>

  • Example:

(async() => {
    await db.add('participants', 5, 'Polls') // add 'Polls' table to the constructor
    db.get('participants', 'Polls').then(console.log) // 5
    await db.add('participants', 10, 'Polls')
    db.get('participants', 'Polls').then(console.log) // 15
})()

Sub

Sub some amount from a number in the database.

  • Usage: <Database>.sub(key: string, value: number, table?: string): Promise<void>

  • Example:

(async() => {
    db.get('participants', 'Polls').then(console.log) // 15
    await db.sub('participants', 5, 'Polls')
    db.get('participants', 'Polls').then(console.log) // 10
})()

Has

Check if the database has a key value.

  • Usage: <Database>.has(key: string, table?: string): Promise<boolean>

  • Example:

(async() => {
    await db.set('myobject', { "a": 1, "b": 2 })
    db.has('myobject.b').then(console.log) // true
    db.has('myobject.c').then(console.log) // false
})()

Delete

Delete something from the database.

  • Usage: <Database>.delete(key: string, table?: string): Promise<void>

  • Example:

(async() => {
    await db.set('test', { "foo" true, "bar": "sup" })
    db.get('test').then(console.log) // { "foo": true, "bar": "sup" }
    await db.delete('test.bar')
    db.get('test').then(console.log) // { "foo": true }
})()

Ping

Check the database latency (miliseconds).

  • Usage: <Database>.ping(): Promise<number>

  • Example:

(async() => {
    let ping = await db.ping()
    console.log(ping) // 5, so 5 miliseconds
})()

Get table

Get a table object (like all).

  • Usage: <Database>.getTable(name: string): Record<string, any> | null

  • Example:

(async() => {
    let all = db.getTable('main')
    console.log(all) // { full Object }
})()

Start

Starts the database (very important).

  • Usage: <Database>.start()

  • Exmaple:

import { Database } from "midb";

const db = new Database()

db.start() // now we can use our midb database :)

Keywords

FAQs

Last updated on 08 Aug 2022

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc