New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

myqui

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

myqui

A simple, interactive database created for facilitating data management

latest
npmnpm
Version
3.0.4
Version published
Maintainers
1
Created
Source

MyQui

MyQui is a simple, interactive database created for facilitating data management in your company or project created by the Softnoir Corporation.

Installation

You can install this package using the following command:

npm install myqui --save

Documentation

REMINDER: You still can see the documentation at our web. This is a codebox for learning to use MyQui:

const qui = require('myqui')

const db = new qui.Database()

db.createPool({
    id: '23MSdShd',
    name: 'myPool',
    capacity: '2.0 GB',
    user: 'root',
    password: 'mypasswordhahabyebye'
})

db.loadPool('23MSdShd') // execute all the information specified on the createPool funct

db.createDocument('blog')
}) // blog is the name of the database

db.prepare({ key: 'author', value: 'Pau' }) // prepare data for the query function

// insert
db.query('INSERT INTO POOL myPool, DATABASE blog VALUES (author, Pau)')

// select
let o = db.query('SELECT * FROM POOL myPool, DATABASE blog WHERE KEY = author')
 
// evaluate result (check if an object exists)
let r = db.query('EVALUATE RESULT FROM POOL myPool, DATABASE blog WHERE KEY = author')

db.close() // close the connnection to a database

Source code

If you want to change something on this service or recommend something, see our GitHub account.

Changelog

  • 3.0.3 ◆ Changed schemas to documents
  • 3.0.2 ◆ Reinvented the language of queries, added pools technology, schemas technology and close function.
  • 3.0.0 ◆ Added model compatibility and fixed JSON.stringify technology.

Keywords

aidak

FAQs

Package last updated on 06 Dec 2020

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