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

calm.db

v1.1.4

Published

A simple JSON-based database for Node.js applications

Downloads

14

Readme

calm.db

calm.db is a zero-dependency, lightweight JSON-based database for Node.js applications. It provides methods to easily store, retrieve, and manipulate data, now including CSV import and export capabilities.

Installation

You can install calm.db via npm:

npm install calm.db

Usage

Initialize calm.db

const Database = require("calm.db");

// Initialize calm.db with a file path
const db = new Database("data/db.json");

Setting Data

// Set key-value pair
await db.set("key1", "value1");

Getting Data

// Get value by key
const value = await db.get("key1");
console.log(value); // Output: 'value1'

Checking Existence

// Check if key exists
const exists = await db.has("key1");
console.log(exists); // Output: true

Deleting Data

// Delete data by key
const deleted = await db.delete("key1");
console.log(deleted); // Output: true (if successful)

Other Operations

// Get all keys
const keys = await db.keys();
console.log(keys); // Output: ['key1', 'key2', 'key3']

// Get all values
const values = await db.values();
console.log(values); // Output: ['value1', 'value2', 'value3']

// Get the number of entries
const count = await db.size();
console.log(count); // Output: 3

JSON Operations

// Convert database to JSON object
const json = await db.toJSON();
console.log(json); // Output: { key1: 'value1', key2: 'value2', key3: 'value3' }

// Load JSON data into database
const newData = { key4: "value4", key5: "value5" };
await db.fromJSON(newData);

Exporting and Importing CSV

// Export database to CSV string
const csvString = await db.toCSV();
console.log(csvString);

// Import CSV string into database
const newCSVData = `
key,value
key2,value2
key3,value3
`;
await db.fromCSV(newCSVData);

Searching with Filters

// Find entries based on a filter function
const filtered = await db.find((key, value) => key.startsWith("key"));
console.log(filtered); // Output: [['key1', 'value1'], ['key2', 'value2'], ['key3', 'value3']]

Contributing

Contributions are welcome! Feel free to open issues or pull requests for any improvements or bug fixes.

License

MIT License. See the LICENSE file for details.


© 2024 RohanDaCoder (Discord: rohan_ohio)