
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
simple-map-cache
Advanced tools
Simple npm module offering caching functionality using the native map object.
This module a very simple key/value storage for node, so you can cache any operation, function or call results. The cache map persist after the module is reloaded (the map is stored in a JSON file)
This used to be part of my module simple-fetch-cache, but I decided to extract it and publish it on its own. It doesn't have any external dependencies and it uses the native Map
object to track the entries.
You can install with [npm]:
$ npm install --save simple-map-cache
Please look at the index.test.js file to check how the module can be used, but in a nutshell these are the methods available:
set, get, del, clear
Parameter | Description |
---|---|
set | Add new entry to the cache. ie set('day', 'friday') |
get | Retrieves entry from the cache. get('day') // returns friday. undefined for the non existing values. |
del | Removes entry from the cache |
clear | Wipes out all the entries from the cache |
All the requests cached in memory will persist there as long as the process in running. Nevertheless if you require the cache to expire after X miliseconds, you can pass it as a second parameter. ie:
// It will disappear after 100 msec.
> const cache = require('simple-map-cache')
> cache.set('testephimeral', 'shouldberemovedsoon', 100)
Copyright © 2019, Juan Convers. Released under the MIT License.
FAQs
Simple npm module offering caching functionality using the native map object.
The npm package simple-map-cache receives a total of 2 weekly downloads. As such, simple-map-cache popularity was classified as not popular.
We found that simple-map-cache demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.