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

meatdb

v2.1.0

Published

Package that can store your data with easy, secure and fast

Downloads

17

Readme

meatdb / meat.db

Package that can store your data with easy, secure and fast

Installation ⏳

You can install via npm using this command:

npm i meatdb

Setup 🔨

const DB = require('meatdb'); // Common JS import

// or

import DB from 'meatdb'; // ESM import

Usage 📌

const db = new DB({
    path: './database', //optional
    waitForSetTime: 50, //(optional default to 50) wait for a given time in ms before set the data 
    maxDataInOneFile: 10000, //(optional default to 10000) maximum data in one file, it'll create a new file if it's reach the limit
    encrypt: true, // optional, default to false
    encryptionKey: "Very secret key, you must hide this key somewhere in the safe place like env", // required only if encrypt is true
    iv: 'my iv 123', //required only if encrypt is true
    salt: "salt", //optional only affected when encrypt is true
    encoding: "binary" //optional default to hex only affected when encrypt is true
})
db.once('ready', () => {
    console.log("Database ready!")
})
// NOTE: you need to use .then() if it's not in async function
// set data with provided name and value
await db.set('name', 'value') // return undefined

// get data with provided name
await db.get('name') // return json {key: 'name', value: 'value'} or value become undefined if it doesn't exist

// check if data with provided name exist
await db.has('name') // return true or false depend on if the data exist or not

// delete data with provided name
await db.delete('name') // return true or false depend on if the data exist or not (like db.has but it'll delete the data if exist)

// get all data that has been stored in the db
await db.all() // return array with json inside it. Actually like db.get


// get database ping
await db.ping() // return number in ms

//get database uptime
db.uptime // return number in ms

Why using this package?

because this package is fast and easy to store your data, need only 300 - 800ms to set 100k data in the same time, also you can encrypt your data with easy and your data will be secure

You can try this:

// not encrypt
const DB = require('meatdb')
const db = new DB()
for (let i = 0; i < 100000; i++) {
    db.set(i, i)
}
// encrypt
const DB = require('meatdb')
const db = new DB({
    encrypt: true,
    encryptionKey: 'secret key here',
    iv: 'this is iv'
})
for (let i = 0; i < 100000; i++) {
    db.set(i, i)
}

What's new on 2.1.0?

  • Support more node.js version