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

jnpex

v4.0.0

Published

JSON Local storage for quick and straightforward use cases.

Downloads

8

Readme

JNPEX

NPM

JNPEX is a straight forward libary to handle JSON file operations, providing functionalities to interact with JSON files such as reading, writing, updating, deleting, and checking the existence of keys.

Installation

You can install JNPEX via npm:

npm install jnpex

Then, require the module in your Node.js files:

const JNPEX = require('jnpex');

Usage

Constructor

The JNPEX class constructor creates a new instance for JSON file operations.

const db = new JNPEX(filePath, useCache);
  • filePath (string, optional): The path to the JSON file. If not provided, a default file named JNPEX.JSON will be created.
  • useCache (boolean, optional, default: true): Specifies whether to use caching to improve performance by reducing the need to read the file every time.

Methods

keyExists(key)

Checks if a key exists in the JSON file.

db.keyExists("keyName");
  • key (string): The key to check for existence.

getAll()

Retrieves all data from the JSON file.

db.getAll();

get(key)

Retrieves the value associated with a key from the JSON file.

db.get("keyName");
  • key (string): The key to retrieve the value of.

erase()

Erases all data from the JSON file.

db.erase();

delete(key)

Deletes a key and its associated value from the JSON file.

db.delete("keyName");
  • key (string): The key to delete.

set(key, value)

Sets a key-value pair in the JSON file.

db.set("keyName", value);
  • key (string): The key to set.
  • value (any): The value to set.

update(key, callback)

Updates the value of a key using a callback function.

db.update("keyName", (value) => value + 1);
  • key (string): The key to update.
  • callback (function): The callback function to update the key value.

Example

//Import the package
const JNPEX = require('jnpex');

// Initialize a new JNPEX instance with a file named "contacts.json" with caching true
const addressBook = new JNPEX("contacts.json", true); // useCache is true by default.

// Add a new contact
addressBook.set("JohnDoe", {
    name: "John Doe",
    email: "[email protected]",
    phone: "+1234567890",
    address: "123 Main St, City"
});

// Update John Doe's email address
addressBook.update("JohnDoe", (contact) => {
    contact.email = "[email protected]";
    return contact;
});

// Retrieve John Doe's contact information
const johnDoeContact = addressBook.get("JohnDoe");
console.log("John Doe's Contact Information:", johnDoeContact);

// Check if a contact exists
const isContactExisting = addressBook.keyExists("JaneSmith");
console.log("Is Jane Smith's contact existing:", isContactExisting);

// Delete a contact
addressBook.delete("JohnDoe");

// Erase all contacts from the address book
addressBook.erase();

Error Handling

  • If the file being used by another program or inaccessible, an error will be thrown.
  • If a key doesn't exist during delete or update operations, an error will be thrown.