Socket
Socket
Sign inDemoInstall

jnpex

Package Overview
Dependencies
0
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    jnpex

JSON Local storage for quick and straightforward use cases.


Version published
Weekly downloads
10
increased by42.86%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

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: "john@example.com",
    phone: "+1234567890",
    address: "123 Main St, City"
});

// Update John Doe's email address
addressBook.update("JohnDoe", (contact) => {
    contact.email = "john.doe@example.com";
    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.

Keywords

FAQs

Last updated on 17 Mar 2024

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc