npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bd-db

v1.1.0

Published

A powerful and flexible database library for Node.js

Downloads

12

Readme

bd-db افضل بكج قاعدة البيانات

Installation

استخدم npm أو الغزل للتثبيت bd-db package :

npm install bd-db
yarn add bd-db

التثبيتات

Javascript مثال

const { bdbd } = require('bd-db');
const db = new bdbd('database.json');//Specify a file to be the database

Typescript مثال

import { bdbd } from 'bd-db'
const db = new bdbd('database.json'); // حدد ملفًا ليكون قاعدة البيانات

كيفية الاستخدام

مع الأخذ في الاعتبار أنك استخدمت الكود السابق لتهيئة قاعدة البيانات :

كيف تستخدم set('key', 'value') :

db.set('key', 'value'); // إضافة قيمة إلى قاعدة البيانات باستخدام مفتاح محدد

Example for set('key', 'value') :

db.set('d', 'a')

كيف تستخدم push('key', 'value') :

db.push('key', 'value'); // قيمة في صفيف إلى قاعدة البيانات باستخدام مفتاح محدد

مثال push('key', 'value') :

db.push('B', 'Banana');

كيف تستخدم add('key', number) :

db.add('key', number); // إضافة رقم إلى مجموع قيمة المفتاح المحدد

Example for add('key', number) :

db.add('pointa', 10);
db.add('pointa', 6);

كيف تستخدم subtract('key', number) :

db.subtract('key', number); // اطرح رقمًا لمجموع قيمة المفتاح المحدد

مثال subtract('key', number) :

db.subtract('pointa', 15);
db.subtract('na3san_points', 18);

كيف تستخدم get('key') :

db.get('key'); // احصل على قيمة من قاعدة البيانات باستخدام مفتاح محدد

مثال get('key') :

db.set('d', 'toto');
db.push('b', 'fofo');
db.push('a', 'popo');
console.log(db.get('A'));//Output < toto >
console.log(db.get('B'));//Output < ["fofo", "bobo"] >
db.add('pointa', 10);
db.add('pointa', 5);
console.log(db.get('pointa'));
db.subtract('pointa', 14);
db.subtract('pointa', 8);
console.log(db.get('pointa'));

كيف تستخدم delete('key') :

db.delete('key'); // إزالة قيمة من قاعدة البيانات باستخدام مفتاح محدد

كيفية استخدام getAll() :

db.getAll(); // الحصول على كافة البيانات المخزنة في قاعدة البيانات

How to use clearAll() :

db.clearAll(); // مسح كافة البيانات المخزنة في قاعدة البيانات

Installation

استخدم npm أو الغزل لتثبيت الحزمة bd-db :

npm install bd-db
yarn add bd-db

التثبيتات

Javascript مثال

const { bddb } = require('bd-db');
const db = new bddb('database.json'); // حدد ملف عشان تحفظ فيه البيانات

مثال TypeScript

import { bddb } from 'bd-db'
const db = new bddb('database.json'); // حدد ملفًا ليكون قاعدة البيانات

كيفية الاستخدام

مع الأخذ في الاعتبار أنك استخدمت الكود السابق لتهيئة قاعدة البيانات :

كيف تستخدمها set('key', 'value') :

db.set('key', 'value'); // إضافة قيمة إلى قاعدة البيانات باستخدام مفتاح محدد

مثال set('key', 'value') :

db.set('b', 'blbul')

كيف تستخدمها push('key', 'value') :

db.push('key', 'value'); // إضافة قيمة في صفيف إلى قاعدة البيانات باستخدام مفتاح محدد

مثال ل push('key', 'value') :

db.push('d', 'tofah');

كيفية استخدام add('key', number) :

db.add('key', number); // إضافة رقم إلى مجموع قيمة المفتاح المحدد

مثال add('key', number) :

db.add('pointa', 10);
db.add('pointa', 5);

كيف تستعملها يا حلو subtract('key', number) :

db.subtract('key', number); // اطرح رقمًا لمجموع قيمة المفتاح المحدد

مثال ل subtract('key', number) :

db.subtract('pointa', 56);
db.subtract('pointa', 14);

How to use get('key') :

db.get('key'); // احصل على قيمة من قاعدة البيانات باستخدام مفتاح محدد

مثال ل get('key') :

db.set('d', 'boza');
db.push('g', 'tofah');
db.push('b', 'blbul');
console.log(db.get('d'));//النتيجة < poza >
console.log(db.get('g'));//النتيجة < ["tofah", "blbul"] >
db.add('pointa', 100);
db.add('pointa', 20);
console.log(db.get('pointa'));
db.subtract('pointa', 15);
db.subtract('pointa', 37);
console.log(db.get('pointa'));

How to use delete('key') :

db.delete('key'); // إزالة قيمة من قاعدة البيانات باستخدام مفتاح محدد

How to use getAll() :

db.getAll(); // الحصول على كافة البيانات المخزنة في قاعدة البيانات

How to use clearAll() :

db.clearAll(); // مسح كافة البيانات المخزنة في قاعدة البيانات

جميع حقوقك محفوظة لدى bdDev