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

module-cache

v1.0.4

Published

load temporary modules to the memory

Downloads

10

Readme

module-cache

Fast and performante cache for javascript modules

Deleting a module from "require.cache" is a good idea when dealing with development mode. In production, doing so will decrease performance. Several times we need to load temporary modules to memory (JSON, js-files) and retrieve theme when finish. This module will help you to do so. The module support LRU (Least Recently Used) and TTL (Time To Live) to remove modules automatically.

Works on NodeJS version >= 12.

Installation

npm i -S module-cache

Why to use:

  • Fast: Do not use "require" to load modules
  • Temporary load modules to memory without using the slow "require"
  • Load JSON files and JavaScipt files
  • Uses LRU and TTL to auto remove modules as needed
  • Uses cache based on memory size (Do not evaluate dynamic size evolution)
  • Performance maintained regardless adding and removing modules

Precautions

  • DO NOT USE THIS MODULE TO LOAD UNTRUSTED MODULES!
  • Do not permanetly reference any object or part of object loaded via the cache. Doing so will result that the object will maintain in the memory!
  • Not recommended to use this to load libraries. Libraries should be maintained in memory for performance optimization.

Use cases

  • This module is used by "GridFw" to load temporary i18n data and views to memory.

Usage

const ModuleCache= require('module-cache');

const cache= new ModuleCache(); // or new ModuleCache({options});
/**
 * Could export this var, so we can use the same cache 
 * in the whole application
 * or setting it as Global variable
 */
module.exports= cache;


// Add/get module: Just add the absolute or relative path to that file
var mod= await cache.require('/path/to/file.js'); // load and execute JS file
var data= await cache.require('/path/to/file.json'); // load JSON file
var mod2= await cache.get('/path/to/file'); // alternative to require

var mod3= cache.requireSync('/path/to/file'); // Synchrounous require
var mod4= cache.getSync('/path/to/file'); // alternative

// remove module from the cache
cache.delete('/path/to/file.js');	// remove the JS file
cache.delete('/path/to/file.json');	// remove the JSON file

// Check if a file is loaded
<Boolean> cache.has('/path/to/file');

// Get the size of the cache
var entriesCount= cache.size;

// Get estimated cache size in bytes
var bytes= cache.bytes

// Remove all modules
cache.clear();

// Remove least used module
var mod= cache.pop();

// Get all current kies
<Iterator(key)> cache.keys();

// Get all loaded modules
<Iterator(value)> cache.values();

// Get all entries
<Iterator([key, value])> cache.entries();

// ForEach
cache.forEach(function callback(value, key){});

// Change cache configuration
cache.setConfiguration(options);

Options

const options= {
	/**
	 * Set the maximum entries in the cache for the LRU algorithm
	 * Removes the least used element when this is exceeded
	 * Set to "0" to disable this cache (Example: for development mode)
	 * @default  Infinity
	 */
	max: Infinity,
	/**
	 * Set the TTL (ms) of each element
	 * Removes the element if the ttl is exceeded
	 * The TTL is reset when getting ( via cache.get )
	 * or updating an element ( via cache.set )
	 * @default Infinity
	 */
	ttl: Infinity,
	/**
	 * Set the element as the last used when calling the cache.get method
	 * @default true
	 */
	refreshOnGet: true,
	/**
	 * Maximum cache size in bytes
	 * to use this, you need to add the size of each entry
	 * via catch.set(key, value, bytes)
	 * @type {Number}
	 */
	maxBytes: Infinity
	/**
	 * Module execution timeout
	 * This means timeout for the module to be loaded, executed
	 * and returns the exported value
	 * @default  60s
	 */
	timeout: 60000
};

Credits

Khalid RAFIK

Let's contribute

Open an issue or contact me: [email protected]

Support

Open an issue or contact me: [email protected]

Licence

MIT License

Copyright (c) 2020 rafikalid

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.