🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

ydb

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ydb

A local prototyping database that supports yaml and json

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
8
14.29%
Maintainers
1
Weekly downloads
 
Created
Source

ydb

A lightweight, easy to use, and fast database system for prototyping in Javascript / Typescript.

Features

  • Beginner Friendly: ydb is easy to use with simple keywords that avoid boilerplate.
  • Easy to use: Ever declared a variable or an object? Then you already know how to use ydb.
  • Versatile: ydb can be used for a variety of purposes and allows for both yaml and json files.
  • Secure by default: ydb allows for encryption with a password.
  • Blazingly fast: ydb is built with speed in mind and is as fast as Node.js allows.

Installation

npm install ydb

Usage

Commonjs:

const { Database } = require('ydb');
const db = new Database('database.json');

Modulejs:

import { Database } from 'ydb';
const db = new Database('database.json');

FAQs

Package last updated on 12 Jun 2023

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